-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.37 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
{
"name": "miro-plugin-test",
"version": "1.0.0",
"description": "",
"private": true,
"dependencies": {
"codeflask": "^1.4.1",
"https-localhost": "^4.6.3",
"plantuml-encoder": "^1.4.0"
},
"devDependencies": {
"copyfiles": "^2.4.0",
"@types/codeflask": "^1.4.2",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"css-loader": "^5.0.1",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"html-webpack-plugin": "^4.5.0",
"image-minimizer-webpack-plugin": "^1.0.0",
"imagemin-svgo": "^8.0.0",
"prettier": "^2.1.2",
"raw-loader": "^4.0.2",
"sass": "^1.27.1",
"sass-loader": "^10.0.4",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.7",
"typescript": "^4.0.5",
"webpack": "^5.3.1",
"webpack-cli": "^4.1.0",
"webpack-dev-server": "^3.11.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "copyfiles lib/* dist && webpack serve",
"build": "rm -rf ./dist && webpack"
},
"prettier": {
"useTabs": true
},
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier/@typescript-eslint",
"plugin:prettier/recommended"
]
},
"keywords": [],
"author": "",
"license": "ISC"
}