-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
110 lines (110 loc) · 3.15 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "doroutine.com",
"license": "MIT",
"scripts": {
"start": "react-scripts-ts start",
"build": "react-scripts-ts build",
"test": "react-scripts-ts test --env=jsdom",
"e2e": "NODE_ENV=development jest e2e",
"e2e:production": "NODE_ENV=production jest e2e",
"deploy": "ansible-playbook -i ../deployment/hosts ../deployment/site.yml -t sync.app",
"build:deploy": "npm-run-all --sequential build deploy",
"type:check": "tsc --noEmit",
"lint:check": "tslint -p ."
},
"husky": {
"hooks": {
"pre-commit": "npm-run-all --parallel type:check lint:check"
}
},
"dependencies": {
"@jpavon/react-scripts-ts": "^0.10.1",
"@types/chart.js": "^2.7.40",
"@types/classnames": "^2.2.6",
"@types/d3-array": "^1.2.4",
"@types/expect-puppeteer": "^3.3.0",
"@types/faker": "^4.1.4",
"@types/helmet": "^0.0.42",
"@types/humps": "^1.1.2",
"@types/jest": "^23.3.10",
"@types/jest-environment-puppeteer": "^2.2.0",
"@types/lodash": "^4.14.118",
"@types/moment-range": "^3.1.0",
"@types/node": "^10.12.11",
"@types/promise.prototype.finally": "^2.0.2",
"@types/prop-types": "^15.5.6",
"@types/puppeteer": "^1.10.1",
"@types/react": "^16.7.10",
"@types/react-dom": "^16.0.11",
"@types/react-helmet": "^5.0.7",
"@types/react-redux": "^6.0.10",
"@types/react-router-dom": "^4.3.1",
"@types/redux-logger": "^3.0.6",
"@types/styled-components": "^4.1.2",
"@vx/axis": "^0.0.171",
"@vx/curve": "^0.0.165",
"@vx/glyph": "^0.0.170",
"@vx/grid": "^0.0.171",
"@vx/group": "^0.0.170",
"@vx/responsive": "^0.0.172",
"@vx/scale": "^0.0.165",
"@vx/shape": "^0.0.171",
"@vx/tooltip": "^0.0.165",
"axios": "^0.18.0",
"babel-plugin-styled-components": "^1.9.2",
"classnames": "^2.2.6",
"connected-react-router": "^5.0.1",
"d3-array": "^2.0.2",
"faker": "^4.1.0",
"history": "^4.7.2",
"humps": "^2.0.1",
"husky": "^1.2.0",
"jest": "^23.6.0",
"jest-cli": "^23.6.0",
"jest-puppeteer": "^3.5.2",
"lodash": "^4.17.11",
"moment": "^2.22.2",
"moment-range": "^4.0.1",
"moveto": "^1.7.4",
"normalize.css": "^8.0.1",
"npm-run-all": "^4.1.5",
"polished": "^2.3.0",
"puppeteer": "^1.11.0",
"react": "^16.6.3",
"react-autosize-textarea": "^5.0.0",
"react-datetime": "^2.16.2",
"react-dom": "^16.6.3",
"react-helmet": "^5.2.0",
"react-redux": "^5.1.1",
"react-router-dom": "^4.3.1",
"react-spring": "^6.1.10",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-observable": "^1.0.0",
"redux-saga": "^0.16.2",
"reselect": "^4.0.0",
"rxjs": "^6.3.3",
"store": "^2.0.12",
"styled-components": "^4.1.2",
"styled-normalize": "^8.0.6",
"ts-jest": "^23.10.5",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.17.0",
"tslint-react": "^3.6.0",
"tslint-react-a11y": "^1.0.0",
"typescript": "^3.0.1"
},
"resolutions": {
"uglify-es": "npm:terser"
},
"browserslist": {
"development": [
"last 2 versions"
],
"production": [
"last 2 versions",
">0.1%",
"not dead"
]
}
}