-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
39 lines (39 loc) · 825 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
35
36
37
38
39
{
"name": "universal-react-example",
"version": "1.0.0",
"description": "Universal react example",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack -p",
"start": "babel-node server.js"
},
"keywords": [
"react",
"react-router",
"ejs",
"express",
"history",
"react-dom",
"babel",
"webpack"
],
"author": "",
"license": "ISC",
"dependencies": {
"ejs": "2.4.2",
"express": "4.14.0",
"history": "3.0.0",
"react": "15.2.1",
"react-dom": "15.2.1",
"react-router": "2.5.2"
},
"devDependencies": {
"babel-cli": "6.10.1",
"babel-core": "6.10.4",
"babel-loader": "6.2.4",
"babel-preset-es2015": "6.9.0",
"babel-preset-react": "6.11.1",
"webpack": "1.13.1"
}
}