-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.35 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
{
"name": "react-testing",
"version": "1.0.0",
"description": "Example on how to test react apps",
"main": "app/index.jsx",
"repository": {
"url": "https://github.com/burabure/react-testing",
"type": "git"
},
"author": "Nicolas @burabure Fernandez",
"license": "MIT",
"scripts": {
"start": "npm-run-all --parallel serve watch",
"serve": "http-server",
"watch": "webpack --watch --progress --colors",
"lint": "eslint ./app --ext .js,.jsx",
"test": "NODE_ENV=test mocha --compilers js:babel-register --reporter spec 'app/**/*.test.js*'",
"test:watch": "npm test -- --watch"
},
"devDependencies": {
"babel-plugin-webpack-alias": "^2.1.1",
"chai": "^3.5.0",
"eslint": "^3.10.0",
"eslint-config-airbnb": "^13.0.0",
"eslint-import-resolver-webpack": "^0.7.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.6.0",
"http-server": "^0.9.0",
"mocha": "^3.1.2",
"npm-run-all": "^3.1.1",
"react-addons-test-utils": "^15.3.2",
"skin-deep": "1.0.0-alpha1"
},
"dependencies": {
"babel-core": "^6.18.2",
"babel-loader": "^6.2.7",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-3": "^6.17.0",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"webpack": "^1.13.3"
}
}