-
Notifications
You must be signed in to change notification settings - Fork 102
/
package.json
55 lines (55 loc) · 1.53 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
55
{
"name": "react-testing-demo",
"version": "1.0.0",
"description": "A tutorial of testing React components",
"main": "app/main.jsx",
"scripts": {
"lint": "eslint 'app/**/*.@(js|jsx)'",
"test": "mocha --compilers js:babel-core/register --require ./test/setup.js",
"build": "webpack",
"start": "webpack-dev-server --devtool eval --progress --hot --colors --content-base app",
"deploy": "NODE_ENV=production webpack -p --config webpack.production.config.js",
"validate": "npm ls"
},
"dependencies": {
"babel-runtime": "~6.2.0",
"react": "~0.14.3",
"react-dom": "~0.14.3"
},
"devDependencies": {
"babel-core": "~6.2.1",
"babel-eslint": "~4.1.6",
"babel-loader": "~6.2.0",
"babel-plugin-transform-runtime": "~6.1.18",
"babel-preset-es2015": "~6.1.18",
"babel-preset-react": "~6.1.18",
"babel-preset-stage-0": "~6.1.18",
"chai": "^3.4.1",
"copy-webpack-plugin": "~0.3.3",
"css-loader": "~0.23.0",
"enzyme": "^1.4.1",
"eslint": "~1.10.1",
"eslint-config-airbnb": "~1.0.0",
"eslint-plugin-react": "~3.10.0",
"jsdom": "^7.2.2",
"jsx-test": "~2.1.0",
"mocha": "^2.3.4",
"object-assign": "^4.0.1",
"open-browser-webpack-plugin": "0.0.1",
"precommit-hook": "~3.0.0",
"react-addons-test-utils": "^0.14.6",
"style-loader": "~0.13.0",
"webpack": "~1.12.9",
"webpack-dev-server": "~1.14.0"
},
"keywords": [
"react",
"test",
"enzyme"
],
"author": "Ruan Yifeng",
"license": "MIT",
"pre-commit": [
"lint"
]
}