-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 1.99 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "facilities-app",
"version": "1.0.0",
"description": "",
"private": true,
"main": "index.js",
"proxy": "http://localhost:4000/",
"directories": {
"test": "test"
},
"dependencies": {
"axios": "^0.17.1",
"babel": "^6.23.0",
"express": "^4.16.2",
"jest-cli": "^22.1.4",
"react": "^16.2.0",
"react-scripts": "1.1.0",
"request": "^2.83.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "^22.1.0",
"babel-preset-env": "^1.6.1",
"babel-preset-node6": "^11.0.0",
"babel-preset-react": "^6.24.1",
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"concurrently": "^3.5.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-15": "^1.0.5",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^22.2.1",
"mocha": "^5.0.0",
"mongoose": "^5.0.4",
"nodemon": "^1.14.12",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.2.0",
"react-test-renderer": "^16.2.0",
"xmlhttprequest": "^1.8.0"
},
"scripts": {
"test-server": "mocha test/server-and-backend",
"test-client": "mocha test/client",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"dev": " nodemon src/server.js --exec babel-node",
"test-database": "mocha test/database",
"both": "concurrently \"npm run dev\" \"npm run start\""
},
"jest": {
"verbose": true,
"setupFiles": [
"./test/jestsetup.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"moduleNameMapper": {
"^.+\\.(css|scss)$": "identity-obj-proxy"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/rorybot/Facilities-App.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/rorybot/Facilities-App/issues"
},
"homepage": "https://github.com/rorybot/Facilities-App#readme"
}