-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.51 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.51 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
{
"private": true,
"version": "0.0.0",
"engines": {
"node": ">=11.6.0"
},
"scripts": {
"clean": "rm -rv target/",
"build": "webpack --mode=development",
"watch": "webpack --mode=development --watch",
"build:prod": "webpack --mode=production",
"watch:prod": "webpack --mode=production --watch",
"check": "tsc --noEmit",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"check-fmt": "prettier --check '**/*.{js,jsx,ts,tsx,json,css,scss,html}'"
},
"dependencies": {
"bootstrap-icons": "^1.7.2",
"clsx": "^1.1.1",
"immutable": "^4.0.0",
"js-sdsl": "^4.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@types/node": "^17.0.8",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@types/webpack": "^5.28.0",
"@types/webpack-env": "^1.16.3",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.5.1",
"eslint": "^8.6.0",
"eslint-config-dmitmel": "dmitmel/eslint-config-dmitmel",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.4.6",
"prettier": "^2.5.1",
"sass": "^1.47.0",
"sass-loader": "^13.0.2",
"ts-loader": "^9.2.6",
"typescript": "^4.5.4",
"ultimate-crosscode-typedefs": "dmitmel/ultimate-crosscode-typedefs",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
}
}