forked from reactjs/react-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.3 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "react-tutorial",
"version": "0.0.0",
"description": "Code from the React tutorial.",
"main": "server.js",
"dependencies": {
"body-parser": "^1.4.3",
"express": "^4.4.5",
"install": "^0.4.2",
"jquery": "^2.2.0",
"marked": "^0.3.5",
"node-jsx": "^0.13.3",
"nodemon": "^1.8.1",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-validation-mixin": "^5.3.4",
"react-validatorjs-strategy": "^0.1.4",
"swig": "^1.4.2",
"validatorjs": "^2.0.2"
},
"devDependencies": {
"babel-core": "^6.4.5",
"babel-loader": "^6.2.2",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babelify": "^7.2.0",
"webpack": "^1.12.13"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"watch": "nodemon -e js,html server.js",
"webpack:dev": "webpack --watch --dev",
"webpack": "webpack"
},
"repository": {
"type": "git",
"url": "https://github.com/reactjs/react-tutorial.git"
},
"keywords": [
"react",
"tutorial",
"comment",
"example"
],
"author": "petehunt",
"bugs": {
"url": "https://github.com/reactjs/react-tutorial/issues"
},
"homepage": "https://github.com/reactjs/react-tutorial",
"engines": {
"node": "0.12.x"
}
}