-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.83 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
{
"name": "portfolio-react",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "concurrently \"npm run server\" \"npm run client\"",
"build": "react-scripts-ts build",
"server": "node server/server.js",
"client": "react-scripts-ts start",
"test": "react-scripts-ts test --env=jsdom",
"coverage": "npm run test -- --coverage",
"eject": "react-scripts-ts eject"
},
"proxy": "http://localhost:3001/",
"jest": {
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"!<rootDir>/node_modules/",
"!<rootDir>/path/to/dir/"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
},
"coverageReporters": [
"html",
"json-summary"
],
"snapshotSerializers": []
},
"dependencies": {
"@material-ui/core": "^1.0.0",
"apollo-boost": "^0.1.6",
"axios": "^0.18.0",
"express": "^4.16.3",
"express-graphql": "^0.6.12",
"graphql": "^0.13.2",
"graphql-tag": "^2.9.2",
"immutable": "^3.8.2",
"mongodb": "^3.1.0-beta4",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"react-router-redux": "^4.0.8",
"react-scripts-ts": "2.16.0",
"redux": "^4.0.0",
"redux-immutable": "^4.0.0",
"redux-saga": "^0.16.0"
},
"devDependencies": {
"@types/react": "^16.3.14",
"@types/react-dom": "^16.0.5",
"@types/react-redux": "^6.0.0",
"@types/react-router-dom": "^4.2.6",
"@types/react-router-redux": "^5.0.14",
"@types/redux-immutable": "^3.0.38",
"concurrently": "^3.5.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.4",
"jest": "^23.0.1",
"redux-saga-test-plan": "^3.6.0",
"typescript": "^2.8.3"
}
}