-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 2.05 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
{
"name": "speaking-master",
"version": "1.0.0",
"description": "My praiseworthy Nuxt.js project",
"author": "lwyj123",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon server/index.js --max-old-space-size=4096 --watch server & npm run mock",
"mock": "nodemon mock/server.js",
"dev-debug": "node --inspect node_modules/.bin/nuxt & node --inspect mock/server.js",
"nuxt": "nuxt",
"build": "nuxt build",
"start": "cross-env NODE_ENV=production node server/index.js",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint && sh ./scripts/check-branch-name.sh",
"commitmsg": "commitlint -e",
"commit": "npx git-cz"
},
"dependencies": {
"@babel/runtime": "^7.1.2",
"@nuxtjs/axios": "^5.3.3",
"@nuxtjs/proxy": "^1.2.4",
"@nuxtjs/pwa": "^2.6.0",
"koa": "^2.3.0",
"nuxt": "^2.1.0"
},
"devDependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@commitlint/cli": "^7.1.2",
"@commitlint/config-conventional": "^7.1.2",
"autoprefixer": "^9.1.5",
"babel-eslint": "^8.2.1",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-vue-jsx": "^3.7.0",
"commitlint": "^7.1.2",
"cross-env": "^5.0.1",
"eslint": "^5.6.1",
"eslint-loader": "^2.1.1",
"eslint-plugin-vue": "^5.0.0-beta.2",
"husky": "^0.14.3",
"json-server": "^0.14.0",
"less": "^3.8.1",
"less-loader": "^4.1.0",
"mockjs": "^1.0.1-beta3",
"nodemon": "^1.18.4",
"postcss-hexrgba": "^1.0.1",
"postcss-loader": "^3.0.0",
"postcss-nested": "^4.1.0",
"postcss-responsive-type": "^1.0.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"vue-awesome-swiper": "^3.1.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $GIT_PARAMS",
"pre-commit": "npm run lint && sh ./scripts/check-branch-name.sh"
}
}
}