-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.53 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
{
"name": "dhp",
"version": "1.0.0",
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.1.0",
"bootstrap-sass": "^3.4.1",
"codemirror": "^5.56.0",
"css-loader": "^4.2.1",
"eslint": "^7.6.0",
"eslint-loader": "^4.0.2",
"file-loader": "^6.0.0",
"imagesloaded": "^4.1.4",
"jquery": "^3.5.0",
"lightbox2": "^2.11.3",
"masonry-layout": "^4.2.2",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^7.0.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"sass-loader": "^9.0.3",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^4.0.0",
"webpack": "^4.44.1",
"webpack-bundle-tracker": "^0.4.3",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"npm": "^6.14.6"
},
"scripts": {
"clean": "rm -rf assets/dist",
"test": "poetry run pytest --cov",
"prebuild": "npm run clean",
"build": "webpack",
"build:prod": "NODE_ENV=production npm run build -- -p --progress",
"prestart": "npm run clean",
"start": "webpack --watch",
"predeploy": "npm run build:prod && npm run test",
"deploy:update": "poetry run zappa update $npm_config_stage",
"deploy:migrate": "poetry run zappa manage $npm_config_stage migrate",
"deploy:collectstatic": "poetry run zappa manage $npm_config_stage 'collectstatic --noinput --ignore *.scss'",
"deploy": "npm run deploy:update && npm run deploy:migrate && npm run deploy:collectstatic"
}
}