-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
47 lines (47 loc) · 1.31 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
{
"name": "react-tdd",
"private": false,
"version": "0.0.2",
"description": "",
"scripts": {
"start": "webpack-dev-server --mode development --open",
"test": "TZ=America/New_York BASE_URL=http://localhost:3000 jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AndrewSouthpaw/react-tdd.git"
},
"author": "Andrew Smith <andrewsmith@alumni.stanford.edu>",
"license": "MIT",
"bugs": {
"url": "https://github.com/AndrewSouthpaw/react-tdd/issues"
},
"homepage": "https://github.com/AndrewSouthpaw/react-tdd#readme",
"dependencies": {
"axios": "^0.18.0",
"enzyme": "^3.3.0",
"ramda": "^0.25.0",
"react": "^16.4.1",
"sinon": "^6.1.3"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.0",
"enzyme-adapter-react-16": "^1.1.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"react-dom": "^16.4.1",
"regenerator-runtime": "^0.12.0",
"webpack": "^4.16.1",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/test_setup.js"
}
}