-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.73 KB
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
{
"name": "腕上词典",
"version": "2.3.0",
"description": "",
"engines": {
"node": ">=8.10"
},
"scripts": {
"start": "aiot start --watch",
"build": "aiot build",
"build:192": "cross-env TARGET_ID=W192 TARGET_WIDTH=192 TARGET_HEIGHT=490 aiot build --enable-custom-component",
"build:212": "cross-env TARGET_ID=W212 TARGET_WIDTH=212 TARGET_HEIGHT=520 aiot build --enable-custom-component",
"build:336": "cross-env TARGET_ID=W336 TARGET_WIDTH=336 TARGET_HEIGHT=336 aiot build --enable-custom-component",
"build:432": "cross-env TARGET_ID=W432 TARGET_WIDTH=432 TARGET_HEIGHT=432 aiot build --enable-custom-component",
"build:466": "cross-env TARGET_ID=W466 TARGET_WIDTH=466 TARGET_HEIGHT=466 aiot build --enable-custom-component",
"build:resolutions": "powershell -ExecutionPolicy Bypass -File scripts\\build_resolution_packages.ps1",
"release:resolutions": "powershell -ExecutionPolicy Bypass -File scripts\\release_resolution_packages.ps1",
"deploy:watch": "powershell -ExecutionPolicy Bypass -File scripts\\deploy_watch.ps1",
"deploy:watch:fast": "powershell -ExecutionPolicy Bypass -File scripts\\deploy_watch.ps1 -NoBuild",
"release": "aiot release",
"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/jsc": "^1.0.3",
"@babel/parser": "^8.0.4",
"aiot-toolkit": "^2.0.5",
"conditional-compilation-webpack-plugin": "^1.0.0",
"cross-env": "^10.1.0",
"qs": "^6.15.3"
}
}