-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 1.03 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
{
"license": "MIT",
"version": "1.0.0",
"name": "shinee-ui",
"scripts": {
"server": "hap server",
"postinstall": "hap postinstall",
"debug": "hap debug",
"build": "hap build",
"release": "hap release",
"watch": "hap watch",
"eslint": "eslint source",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0",
"eslint:fix": "eslint --fix ./source"
},
"pre-commit": [
"precommit-msg",
"eslint"
],
"devDependencies": {
"babel-eslint": "^10.0.1",
"chalk": "^3.0.0",
"eslint": "^5.14.1",
"eslint-plugin-hybrid": "0.0.5",
"eslint-plugin-react": "^7.12.4",
"hap-toolkit": "latest",
"pre-commit": "^1.2.2"
},
"dependencies": {
"moment": "^2.24.0",
"schnee-ui": "^1.0.7"
},
"nanachi": {
"alias": {
"@components": "source/components",
"@common": "source/common",
"@assets": "source/assets"
}
}
}