-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
49 lines (49 loc) · 1.36 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
{
"name": "scada",
"version": "1.0.0",
"description": "supervisory control and data acquisition",
"main": "index.js",
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c --environment INCLUDE_DEPS,BUILD:production",
"prettier": "prettier --write .",
"lint": "eslint --ext .js, src",
"prepare": "husky install",
"commit": "cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/askwuxue/Scada.git"
},
"author": "askwuxue",
"license": "ISC",
"bugs": {
"url": "https://github.com/askwuxue/Scada/issues"
},
"homepage": "https://github.com/askwuxue/Scada#readme",
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"prettier": "2.5.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-uglify": "^6.0.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@typescript-eslint/parser": "^5.16.0"
}
}