-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.34 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
{
"name": "vela-watch-milk",
"version": "1.0.0",
"description": "",
"engines": {
"node": ">=8.10"
},
"scripts": {
"start": "aiot server --watch --open-nuttx",
"build": "aiot build",
"release": "aiot release",
"watch": "aiot watch --open-nuttx",
"lint": "eslint --format codeframe --fix --ext .ux,.js src/"
},
"lint-staged": {
"*.{ux,js}": [
"prettier --write",
"eslint --format codeframe --fix",
"git add"
],
"*.{less,css}": [
"prettier --write",
"stylelint --fix --custom-syntax postcss-less",
"git add"
]
},
"devDependencies": {
"aiot-toolkit": "2.0.3-beta.2",
"ux-types": "^0.1.1",
"babel-eslint": "^10.0.1",
"eslint": "^6.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-ux": "^0.0.4",
"husky": "^8.0.1",
"less": "^3.12.2",
"less-loader": "^6.2.0",
"lint-staged": "^8.2.1",
"postcss-html": "^1.3.0",
"postcss-less": "^6.0.0",
"prettier": "^2.7.1",
"eslint-import-resolver-node": "^0.3.7",
"eslint-plugin-import": "^2.27.5",
"stylelint": "^14.5.3",
"stylelint-config-recess-order": "^3.0.0",
"stylelint-config-standard": "^25.0.0",
"stylelint-order": "^5.0.0",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0"
}
}