-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
28 lines (28 loc) · 898 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
{
"name": "hotdogs",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run babel && node-sass public/style/style.scss public/style/style.css --output-style compressed",
"babel": "babel source --out-dir public/js --presets minify",
"babel-watch": "babel source --out-dir public/js --watch --verbose",
"sass-watch": "node-sass public/style/style.scss public/style/style.css --output-style compressed --watch",
"start": "serve public"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.6",
"babel-preset-minify": "^0.5.1",
"node-sass": "^4.12.0"
},
"dependencies": {
"serve": "^11.2.0"
}
}