forked from reactjs/react-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.11 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
{
"name": "react-tutorial",
"version": "0.0.0",
"description": "React tutorial and walkthrough",
"main": "server.js",
"dependencies": {
"body-parser": "^1.4.3",
"express": "^4.4.5",
"jquery": "^2.1.3",
"react": "*",
"react-tools": "*"
},
"devDependencies": {
"browserify": "^8.0.2",
"gulp": "^3.8.10",
"gulp-react": "^2.0.0",
"gulp-shell": "^0.2.11",
"jest-cli": "^0.2.1",
"reactify": "^0.17.1",
"vinyl-source-stream": "^1.0.0"
},
"scripts": {
"test": "./node_modules/jest-cli/bin/jest.js test",
"start": "node server.js"
},
"jest": {
"testDirectoryName": "test",
"scriptPreprocessor": "<rootDir>/config/preprocessor.js",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react"
]
},
"repository": {
"type": "git",
"url": "https://github.com/reactjs/react-tutorial.git"
},
"keywords": [
"react",
"tutorial",
"comment",
"example"
],
"author": "michael frye",
"bugs": {
"url": "https://github.com/reactjs/react-tutorial/issues"
},
"homepage": "https://github.com/reactjs/react-tutorial"
}