-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.71 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
{
"name": "plugins",
"version": "0.0.1",
"description": "iitc plugins",
"repository": "https://github.com/xscreach/iitc-plugins",
"main": "src/code/globals.ts",
"keywords": [],
"private": true,
"devDependencies": {
"@types/color-string": "^1.5.2",
"@types/jquery": "^3.5.14",
"@types/jqueryui": "^1.12.16",
"@types/leaflet": "^1.9.8",
"@types/spectrum": "^1.8.7",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"ava": "^5.1.0",
"css-loader": "^6.7.1",
"cssnano": "^5.1.7",
"del": "^6.0.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-local-rules": "^1.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-webpack-plugin": "^3.1.1",
"fancy-log": "^2.0.0",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^2.7.2",
"postcss": "^8.4.6",
"postcss-loader": "^6.2.1",
"postcss-url": "^10.1.3",
"prettier": "^2.6.0",
"pretty-quick": "^3.1.3",
"raw-loader": "^4.0.2",
"sass": "^1.56.1",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"through2": "^4.0.2",
"to-string-loader": "^1.2.0",
"ts-loader": "^9.2.8",
"tslib": "^2.3.1",
"typescript": "^4.6.2",
"webpack": "^5.75.0",
"webpack-cli": "^4.9.2",
"webpack-sources": "^3.2.3"
},
"scripts": {
"build": "webpack --progress --env build=local --stats-error-details",
"watch": "webpack --progress --env build=local --watch --stats-error-details",
"prod": "webpack --progress --env build=prod",
"format:check": "prettier --check src/code",
"format:run": "prettier --write src/code",
"lint:check": "eslint src",
"lint:fix": "eslint --fix src"
}
}