-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·59 lines (59 loc) · 1.57 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
{
"name": "dealingi",
"version": "0.1.0",
"private": true,
"engines": {
"yarn": "1.13.0"
},
"dependencies": {
"@types/node": "^8.0.0",
"@types/node-sass": "^3.10.32",
"@types/react": "^16.4.13",
"@types/react-dom": "^16.0.7",
"@types/react-router-dom": "^4.3.1",
"@types/react-table": "^6.7.20",
"@types/styled-components": "^4.0.3",
"formik": "^1.3.1",
"husky": "^1.1.2",
"lint-staged": "^7.3.0",
"mobx": "^5.5.2",
"mobx-react": "^5.3.6",
"polished": "^2.3.0",
"prettier": "^1.14.3",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-router-dom": "^4.3.1",
"react-scripts-ts": "3.1.0",
"react-slick": "^0.23.2",
"react-table": "^6.8.6",
"serve": "^10.1.1",
"slick-carousel": "^1.8.1",
"styled-components": "^4.0.3",
"whatwg-fetch": "^3.0.0",
"wretch": "^1.4.2",
"yup": "^0.26.6"
},
"lint-staged": {
"src/**/*.{ts,tsx,js,jsx,json,css,scss}": [
"prettier --write",
"git add"
],
"src/**/*.{ts,tsx}": "tslint --fix"
},
"scripts": {
"precommit": "lint-staged",
"dev": "react-scripts-ts start",
"start": "serve -s build",
"build": "react-scripts-ts build",
"test": "react-scripts-ts test --env=jsdom",
"eject": "react-scripts-ts eject",
"heroku-postbuild": "yarn run build"
},
"devDependencies": {
"@types/jest": "^23.3.7",
"@types/react-slick": "^0.23.2",
"@types/yup": "^0.26.2",
"tslint-config-prettier": "^1.15.0",
"typescript": "^3.1.3"
}
}