-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
33 lines (33 loc) · 968 Bytes
/
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
{
"private": true,
"engines": {
"node": ">=11.0.0"
},
"dependencies": {
"jszip": "=3.10.1",
"semver": "=6.3.0"
},
"devDependencies": {
"@types/archiver": "^5.3.1",
"@types/node": ">=11.9",
"@types/semver": "6.2.x || 6.3.x",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"archiver": "^5.3.1",
"esbuild": "^0.15.13",
"eslint": "^8.1.0",
"eslint-config-dmitmel": "dmitmel/eslint-config-dmitmel",
"eslint-plugin-node": "^11.1.0",
"prettier": "^2.0.5",
"readdir-glob": "^1.1.1",
"typescript": "~4.8.4",
"ultimate-crosscode-typedefs": "dmitmel/ultimate-crosscode-typedefs"
},
"scripts": {
"build": "tsc --build",
"watch": "tsc --build --watch",
"lint": "eslint . --ext .js,.ts --ignore-path .eslintignore",
"check-fmt": "prettier --check '**/*.{js,ts,json,css,scss,html}'",
"clean": "rm -rv common/dist/ runtime/dist/ dist/"
}
}