-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
138 lines (138 loc) · 3.46 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "bulb",
"version": "1.0.0",
"author": "SimonMa <[email protected]>",
"license": "LGPI-3.0",
"private": true,
"homepage": "http://softbei.cn:17014",
"repository": "https://github.com/tomotoes",
"bugs": "https://github.com/tomotoes/light/issues",
"description": "Smart home",
"keywords": [
"admin",
"vue",
"koa",
"mongodb"
],
"engines": {
"node": ">=8.0"
},
"cpu": [
"x64"
],
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test": "vue-cli-service test",
"prestart": "pm2 start ecosystem.config.js",
"start": "vue-cli-service serve",
"stop": "pm2 stop all",
"restart": "pm2 restart server/index.js",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"reset": "firmata-party uno --debug",
"prelint": "eslint --ext .js server & eslint --ext .js,.vue src",
"lint": "eslint --fix .js server && eslint --fix .js,.vue src",
"amend": "git add -A && git commit --amend --no-edit",
"postamend": "git push -f origin master",
"precommit": "git add -A",
"commit": "git cz",
"postcommit": "npm run amend --no-edit"
},
"dependencies": {
"@tensorflow/tfjs": "^0.12.5",
"axios": "^0.18.0",
"baidu-aip-sdk": "^2.3.3",
"bcryptjs": "^2.4.3",
"echarts": "^4.1.0",
"element-ui": "^2.4.6",
"fluent-ffmpeg": "^2.1.2",
"fundebug-nodejs": "0.0.9",
"ip": "^1.1.5",
"js-cookie": "^2.2.0",
"jsonwebtoken": "^8.3.0",
"kcors": "^2.2.2",
"koa": "^2.5.2",
"koa-body": "^4.0.4",
"koa-bodyparser": "^4.2.1",
"koa-jwt": "^3.3.2",
"koa-logger": "^3.2.0",
"koa-onerror": "^4.0.1",
"koa-router": "^7.4.0",
"koa-session": "^5.8.2",
"koa-static": "^5.0.0",
"koa-static-cache": "^5.1.2",
"log4js": "^2.11.0",
"module-alias": "^2.1.0",
"moment": "^2.22.2",
"mongoose": "^5.2.9",
"mosca": "^2.8.3",
"mqtt": "^2.18.3",
"node-schedule": "^1.3.0",
"normalize.css": "^8.0.0",
"nprogress": "^0.2.0",
"register-service-worker": "^1.5.2",
"svg-captcha": "^1.3.11",
"v-charts": "^1.17.10",
"vue": "^2.5.17",
"vue-class-component": "^6.2.0",
"vue-property-decorator": "^6.1.0",
"vue-router": "^3.0.1",
"vue2-animate": "^2.0.0",
"vuex": "^3.0.1",
"xunfeisdk": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.47",
"@vue/cli-plugin-babel": "^3.0.1",
"@vue/cli-plugin-pwa": "^3.0.1",
"@vue/cli-service": "^3.0.1",
"babel-eslint": "^8.2.6",
"chalk": "^2.4.1",
"commitizen": "^2.10.1",
"conventional-changelog": "^1.2.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.4.0",
"eslint-plugin-vue": "^4.7.1",
"nodemon": "^1.18.3",
"pm2": "^2.10.4",
"pug": "^2.0.3",
"pug-loader": "^2.4.0",
"pug-plain-loader": "^1.0.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"vue-template-compiler": "^2.5.17",
"vue-textra": "^1.0.2",
"yorkie": "^1.0.3"
},
"browserslist": [
"> 1%",
"last 2 versions",
"Android >= 4.4",
"iOS >= 8",
"Chrome >= 46",
"ff >= 43",
"ie >= 9"
],
"gitHooks": {
"pre-commit": "echo lint被我吃了~",
"commit-msg": "node server/utils/commit"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"_moduleAliases": {
"@root": ".",
"config": "./config",
"model": "./server/model",
"controller": "./server/controller",
"db": "./server/db",
"utils": "./server/utils",
"middlewares": "./server/middlewares",
"routes": "./server/routes",
"dist": "./dist",
"schedule": "./server/schedule",
"consumption": "./server/consumption"
}
}