-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1015 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "website",
"version": "1.0.0",
"description": "",
"main": "src/main.js",
"dependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"animejs": "^3.2.0",
"babel-loader": "^8.1.0",
"css-loader": "^2.1.1",
"cssnano": "^4.1.10",
"live-server": "^1.2.1",
"mini-css-extract-plugin": "^0.6.0",
"npm-run-all": "^4.1.5",
"particles.js": "^2.0.0",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"vanilla-tilt": "^1.7.0",
"webpack": "^4.43.0"
},
"devDependencies": {
"webpack-cli": "^3.3.11"
},
"scripts": {
"dev:start": "live-server public --host=localhost --watch=./public/ --port=8080 --no-browser",
"dev:src": "webpack --watch --config webpack.dev.config.js",
"dev": "npm-run-all -p dev:*",
"build": "webpack --config webpack.prod.config.js"
},
"repository": {
"type": "git",
"url": "https://github.com//mvhacks/website"
},
"author": "Arjun Patrawala",
"license": "MIT"
}