-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 940 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 940 Bytes
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
{
"name": "frontend-framework",
"version": "1.0.0",
"author": "",
"lint-staged": {
"*.{ts,tsx,js}": [
"eslint -c .eslintrc.js",
"format-imports --config .vscode/import-sorter.json"
],
"*.{ts,tsx,css,less}": "stylelint --config .stylelintrc.json",
"*.{ts,tsx,json,js,css,less,md}": [
"prettier --write"
]
},
"scripts": {
"start": "vite",
"build": "tsc && vite build"
},
"dependencies": {
"@emotion/react": "11.5.0",
"@esbuild-plugins/node-globals-polyfill": "^0.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"@types/node": "^16.11.11",
"@types/react": "^17.0.15",
"@types/react-dom": "^17.0.9",
"@types/react-router-dom": "^5.3.3",
"@vitejs/plugin-react-refresh": "^1.3.6",
"stylelint-config-standard": "^24.0.0",
"stylelint-order": "^5.0.0",
"vite": "^2.4.4"
}
}