-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.31 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.31 KB
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
{
"name": "daisnotes-web",
"version": "1.0.0",
"private": true,
"scripts": {
"serve": "serve -s build",
"start": "PORT=3333 react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "tslint --fix --project .",
"lint-staged": "lint-staged"
},
"husky": {
"hooks": {
"pre-commit": "npm-run-all lint lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write",
"git add"
]
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@date-io/date-fns": "^1.3.11",
"@material-ui/core": "^4.5.2",
"@material-ui/icons": "^4.5.1",
"@material-ui/pickers": "^3.2.7",
"@tinymce/tinymce-react": "^3.3.2",
"@types/jest": "24.0.20",
"@types/node": "12.11.7",
"@types/react": "16.9.11",
"@types/react-dom": "16.9.3",
"@types/react-redux": "^7.1.5",
"@types/react-router": "^5.1.2",
"@types/react-router-dom": "^5.1.0",
"@types/react-select": "^3.0.8",
"axios": "^0.19.0",
"classnames": "^2.2.6",
"date-fns": "^2.6.0",
"lodash": "^4.17.15",
"notistack": "^0.9.5",
"query-string": "^6.9.0",
"react": "^16.11.0",
"react-app-polyfill": "^1.0.4",
"react-cookie": "^4.0.1",
"react-dom": "^16.11.0",
"react-redux": "^7.1.1",
"react-router-dom": "^5.1.2",
"react-scripts": "3.2.0",
"react-select": "^3.0.8",
"react-uid": "^2.2.0",
"redux": "^4.0.4",
"redux-devtools-extension": "^2.13.8",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0",
"typeface-roboto": "0.0.75",
"typescript": "3.6.4"
},
"devDependencies": {
"@types/classnames": "^2.2.9",
"@types/lodash": "^4.14.149",
"@types/redux-logger": "^3.0.7",
"core-js": "^3.4.3",
"husky": "^3.0.9",
"lint-staged": "^9.4.2",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"serve": "^11.2.0",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1"
}
}