-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1 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
{
"name": "bodhi",
"version": "0.0.1",
"description": "A profile for creating applications with node-based frontends using webpack",
"main": "index.js",
"repository": {},
"scripts": {
"start": "webpack --progress --watch",
"bundle": "webpack",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "webpack --watch --colors --progress",
"bundle-prod": "webpack --config webpack.production.config.js",
"wp-version": "webpack --version"
},
"license": "ISC",
"devDependencies": {
"babel-core": "^6.23.1",
"babel-loader": "^6.3.2",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"babel-relay-plugin": "^0.11.0",
"sync-request": "^3.0.1",
"webpack": "1.13.2"
},
"dependencies": {
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-hotkeys": "^0.9.0",
"react-relay": "^0.10.0",
"react-remarkable": "^1.1.1"
}
}