-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 951 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
{
"name": "ReactTutsplusPractice",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "watchify src/app.js -o public/bundle.js -t [ babelify --presets [es2015 react] ]",
"server": "cd public; live-server --port=2000 --entry-file=index.html",
"sass": "sass --watch --style compressed src/styles.sass:public/styles.css",
"pug2html": "pug --output-style compressed --watch -o public/ src/index.pug",
"autoprefixer": "postcss -u autoprefixer -r dist/css/*",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babelify": "^7.3.0",
"live-server": "^1.2.0",
"watchify": "^3.9.0"
},
"devDependencies": {
"autoprefixer": "^7.1.1",
"node-sass": "^4.5.3",
"postcss-cli": "^4.0.0",
"pug": "^2.0.0-rc.2"
}
}