-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.95 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
{
"name": "vite-react-cil",
"version": "1.0.0",
"scripts": {
"dev": "vite --mode dev",
"build:alpha": "vite build --mode alpha",
"build:preprod": "vite build --mode preprod",
"build:prod": "vite build --mode prod",
"lint": "eslint ./src --ext .jsx,.js,.ts,.tsx",
"lint:fix": "eslint ./src --ext .jsx,.js,.ts,.tsx --fix",
"format": "prettier --loglevel warn --write \"./**/*.{js,jsx,ts,tsx,css,md,json}\"",
"clean": "rimraf dist",
"test": "jest --colors --passWithNoTests",
"test:watch": "jest --watchAll"
},
"dependencies": {
"postcss-plugin-px2rem": "^0.8.1",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-router-dom": "^6.3.0",
"reactcss": "^1.2.3",
"svga.lite": "^1.6.1",
"use-immer": "^0.7.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.0",
"@types/jest": "^27.0.1",
"@types/node": "^16.9.1",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"@vitejs/plugin-legacy": "^1.5.3",
"@vitejs/plugin-react-refresh": "^1.3.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.2.0",
"less": "^4.1.1",
"path": "^0.12.7",
"postcss-px2rem": "^0.3.0",
"prettier": "^2.4.0",
"rimraf": "^3.0.2",
"rollup-plugin-visualizer": "^5.5.2",
"sass": "^1.40.0",
"ts-jest": "^27.0.5",
"typescript": "^4.3.2",
"vite": "^2.5.4",
"vite-plugin-checker": "^0.3.4",
"vite-plugin-eslint": "^1.3.0",
"vite-plugin-style-import": "^1.2.1",
"vite-plugin-svg-icons": "^1.0.4"
}
}