-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1010 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
31
32
33
34
{
"name": "language-beauty",
"version": "1.0.0",
"main": "index.js",
"author": "Timothée Clain <timothee.clain@gmail.com>",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"browser-sync": "^2.18.13",
"css-loader": "^0.28.5",
"html-webpack-plugin": "^2.30.1",
"node-sass": "^4.5.3",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"webpack": "^3.5.5"
},
"dependencies": {
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"recompose": "^0.25.0"
},
"scripts": {
"clean": "rm -f static/main.*js*",
"dev": "npm run clean & npm run dev:build & npm run dev:server & npm run dev:proxy",
"dev:server": "python app.py",
"dev:proxy": "browser-sync start --proxy 'http://localhost:5000' --files='static/*'",
"dev:build": "webpack --watch",
"build": "npm run clean & webpack"
}
}