-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.54 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.54 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
44
45
46
47
48
49
50
51
52
53
54
{
"name": "node-kas",
"version": "1.0.1",
"description": "A drop-in replacement for KAS.",
"author": "Alan-Liang",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
"build": "cross-env NODE_ENV=production nuxt build",
"build:idframe": "babel idframe/appbar.js | uglifyjs -mc > idframe/appbar.dist.js",
"build:title-font": "node scripts/build-title-font",
"start": "cross-env NODE_ENV=production node server/index.js",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .eslintignore ."
},
"babel": {
"presets": [
"@babel/env"
]
},
"dependencies": {
"@keeer/libphonenumber": "^1.7.44-keeer1",
"@koa/router": "^8.0.8",
"@nuxtjs/dotenv": "^1.4.0",
"ali-oss": "^6.5.1",
"ali-sms": "^1.0.3",
"cross-env": "^5.2.0",
"email-validator": "^2.0.4",
"koa": "^2.6.2",
"koa-body": "^4.1.1",
"koa2-winston": "^3.1.1",
"maxmind": "^4.3.1",
"node-fetch": "^2.6.0",
"nodemailer": "^6.4.6",
"nuxt": "^2.13.3",
"pg": "^8.0.0",
"ua-parser-js": "^0.7.23",
"uuid": "^7.0.2",
"winston": "^3.2.1"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^5.0.0",
"@nuxtjs/eslint-module": "^3.0.0",
"@nuxtjs/google-analytics": "^2.3.0",
"@nuxtjs/vuetify": "^1.0.0",
"@types/uuid": "^7.0.2",
"babel-eslint": "^10.0.1",
"eslint": "^7.0.0",
"eslint-plugin-nuxt": ">=0.4.2",
"font-carrier2": "^0.2.0",
"inquirer": "^7.1.0",
"nodemon": "^1.18.9"
}
}