-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.68 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "maskup",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev:server": "nodemon --exec babel-node src/index.js --ignore 'scss' --ignore 'static'",
"dev:assets": "cd ./src && WEBPACK_ENV=development webpack -w",
"build:assets": "cd src && WEBPACK_ENV=production webpack",
"build:server": "babel src --out-dir build --ignore 'src/static','src/assets','src/webpack.config.js' ",
"copyAll": "cp -R src/static build && cp -R src/views build",
"build": "npm run build:server && npm run build:assets && npm run copyAll",
"test": "echo \"Error: no test specified\" && exit 1",
"prebuild": "rm -rf build",
"start": "PRODUCTION=true node build/index.js"
},
"author": "DanYJ",
"license": "MIT",
"dependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/node": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/polyfill": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/runtime": "^7.8.3",
"autoprefixer": "^9.7.4",
"axios": "^0.19.2",
"babel-loader": "^8.0.6",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^3.21.3",
"material-design-lite": "^1.3.0",
"moment": "^2.24.0",
"moment-timezone": "^0.5.28",
"morgan": "^1.9.1",
"pug": "^2.0.4",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"xml": "^1.0.1"
},
"devDependencies": {
"css-loader": "^3.4.2",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"node-sass": "^4.13.1",
"nodemon": "^2.0.2",
"postcss-loader": "^3.0.0",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3"
}
}