-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.98 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
{
"name": "danielak-presentes",
"version": "0.1.0",
"private": true,
"engines": {
"node": "18.x",
"yarn": "1.x"
},
"dependencies": {
"classnames": "^2.2.6",
"dotenv": "^8.2.0",
"final-form": "^4.20.1",
"history": "^4.6.3",
"lodash.isequal": "4.5.0",
"moment": "2.29.0",
"papaparse": "5.4.1",
"query-string": "6.13.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-flexbox-grid": "^2.1.2",
"react-responsive-carousel": "3.2.23",
"react-router-dom": "^5.2.0",
"semantic-ui-css": "2.5.0",
"semantic-ui-react": "2.1.3",
"styled-components": "^5.2.0",
"use-query-params": "1.1.8"
},
"devDependencies": {
"@types/classnames": "2.2.10",
"@types/lodash.isequal": "4.5.8",
"@types/node": "18.8.5",
"@types/papaparse": "5.3.14",
"@types/query-string": "6.3.0",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"@types/react-router-dom": "^5.1.5",
"@types/styled-components": "^5.1.3",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"@vitejs/plugin-react": "2.1.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-n": "15.3.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.0",
"eslint-plugin-react": "7.31.10",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-watch": "8.0.0",
"lint-staged": "10.4.0",
"prettier": "2.7.1",
"sass": "1.55.0",
"ts-node": "10.9.1",
"typescript": "4.8.4",
"vite": "3.1.8"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"eslint --fix"
]
},
"scripts": {
"start": "vite",
"build": "vite build",
"ts": "tsc --project ./tsconfig.json --noEmit",
"ts:watch": "tsc --project ./tsconfig.json --watch --noEmit",
"lint": "eslint src --ext .ts,.tsx",
"lint-watch": "esw src --ext .ts,.tsx --watch --color"
}
}