-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.24 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
{
"name": "operation-bark",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "react-scripts-ts start",
"build": "react-scripts-ts build",
"test": "react-scripts-ts test --env=jsdom",
"eject": "react-scripts-ts eject",
"lint:check": "tslint --project ./tsconfig.tslint.json",
"lint": "yarn run lint:check --fix"
},
"dependencies": {
"emotion": "^10.0.9",
"@emotion/core": "^10.0.9",
"@emotion/styled": "^10.0.9",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-redux": "^6.0.1",
"react-scripts-ts": "3.1.0",
"redux": "^4.0.1",
"redux-actions": "^2.6.5"
},
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/node": "^11.11.3",
"@types/react": "^16.8.8",
"@types/react-dom": "^16.8.2",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4",
"tslint-plugin-prettier": "^2.0.1",
"@types/react-redux": "^7.0.5",
"@types/redux-actions": "^2.3.2",
"typescript": "^3.3.3333"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"yarn run lint",
"git add"
],
"*.{js,jsx,json,css,md}": [
"prettier --write",
"git add"
]
}
}