-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.18 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
{
"name": "react-testing-playground",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "npm run test:unexpected && npm run test:enzyme",
"test:unexpected": "mocha --require test/mocha-unexpected/.setup.js 'test/mocha-unexpected/**/*.js'",
"test:enzyme": "mocha --require test/mocha-chai-enzyme/.setup.js 'test/mocha-chai-enzyme/**/*.js'",
"clean": "rm -rf public/dist/",
"start": "webpack-dev-server --progress --colors --port 3000 --content-base public"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"react": "^15.4.1",
"react-dom": "^15.4.1"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"enzyme": "^2.7.0",
"enzyme-to-json": "^1.4.5",
"mocha": "^3.2.0",
"react-addons-test-utils": "^15.4.1",
"sinon": "^1.17.7",
"sinon-stub-promise": "^4.0.0",
"unexpected": "^10.22.0",
"unexpected-react": "^3.3.2",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2",
"webpack-devserver": "0.0.6"
}
}