-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.22 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
{
"name": "react-starter",
"version": "1.0.0",
"description": "React starter app",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server",
"test": "mocha --compilers js:babel-register --recursive",
"posttest": "npm run lint",
"lint": "eslint ./",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/markgandy/react-starter.git"
},
"author": "Mark Gandy",
"license": "ISC",
"bugs": {
"url": "https://github.com/markgandy/react-starter/issues"
},
"homepage": "https://github.com/markgandy/react-starter#readme",
"dependencies": {
"react": "^0.14.7",
"react-dom": "^0.14.7"
},
"devDependencies": {
"babel-core": "^6.7.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-register": "^6.7.2",
"chai": "^3.5.0",
"enzyme": "^2.2.0",
"eslint": "^2.4.0",
"eslint-config-airbnb": "^6.1.0",
"eslint-plugin-react": "^4.2.3",
"file-loader": "^0.8.5",
"mocha": "^2.4.5",
"react-addons-test-utils": "^0.14.7",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
},
"babel": {
"presets": [
"react",
"es2015"
]
}
}