-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.46 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
56
57
58
59
60
61
62
{
"name": "react-address-book",
"version": "0.1.0",
"description": "Address Book Using ReactJS + Spring Boot",
"repository": {
"type": "git",
"url": "https://github.com/pmaher/ReactAddressBook.git"
},
"keywords": [
"rest",
"hateoas",
"spring",
"data",
"react"
],
"author": "Patrick Maher",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/pmaher/ReactAddressBook/issues"
},
"homepage": "https://github.com/pmaher/ReactAddressBook",
"dependencies": {
"axios": "^0.18.0",
"json-loader": "^0.5.7",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-native": "^0.56.0",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"rest": "^1.3.1",
"webpack": "^1.12.2"
},
"jest": {
"testMatch": [
"**/test/**/*.test.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"scripts": {
"watch": "webpack --watch -d",
"test": "jest",
"updateTests": "jest --updateSnapshot",
"test:watch": "jest --watch"
},
"devDependencies": {
"babel-core": "^6.18.2",
"babel-jest": "*",
"babel-loader": "^6.2.7",
"babel-polyfill": "^6.16.0",
"babel-preset-env": "*",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.4",
"jest": "^23.1.0",
"jsdom": "^11.4.0",
"react-test-renderer": "^16.4.1"
}
}