-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
29 lines (29 loc) · 1003 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
{
"name": "rocketman",
"version": "1.0.0",
"description": "",
"scripts": {
"js": "parcel watch frontend/js/src/index.js --out-dir rocketman/static/js/ --no-hmr",
"js:prod": "parcel build frontend/js/src/index.js --out-dir rocketman/static/js/ --no-cache --no-source-maps",
"sass": "parcel watch frontend/scss/bootstrap.scss --out-dir rocketman/static/css/ --no-hmr",
"sass:prod": "parcel build frontend/scss/bootstrap.scss --out-dir rocketman/static/css/ --no-cache --no-source-maps",
"prod": "npm run js:prod && npm run sass:prod",
"watch": "npm run js & npm run sass"
},
"dependencies": {
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"bootstrap": "^4.4.1",
"jquery": "^3.4.1",
"node-sass": "^4.13.1",
"parcel": "^1.12.4",
"parcel-bundler": "^1.12.4",
"popper.js": "^1.16.1",
"sass": "^1.25.0"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4"
},
"author": "Kalob Taulien"
}