-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.09 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
{
"dependencies": {
"@ant-design/icons": "4.8.0",
"antd": "5.0.5",
"autoprefixer": "10.4.13",
"esbuild": "0.16.3",
"lodash": "4.17.21",
"postcss": "8.4.19",
"postcss-cli": "10.1.0",
"postcss-import": "15.1.0",
"postcss-nesting": "10.2.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-router-dom": "6.8.0",
"swagger-ui-react": "4.16.1"
},
"devDependencies": {
"@tsconfig/strictest": "1.0.2",
"@types/lodash": "4.14.191",
"@types/node": "18.11.12",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.9",
"@types/swagger-ui-react": "4.11.0",
"eslint": "8.29.0",
"eslint-config-canonical": "39.1.4",
"typescript": "4.9.4"
},
"name": "app",
"private": "true",
"scripts": {
"build": "esbuild app/javascript/*.* --bundle --sourcemap --outdir=app/assets/builds --public-path=assets",
"build:css": "postcss ./app/assets/stylesheets/*.* --dir ./app/assets/builds/",
"lint": "eslint --ext .jsx,.js,.tsx,.tsx,.json,.yml,.yaml .",
"lint:fix": "eslint --ext .jsx,.js,.tsx,.tsx,.json,.yml,.yaml --fix ."
}
}