-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.14 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
{
"name": "oo",
"version": "1.0.0",
"description": "Nuxt.js project",
"author": "lxj <[email protected]>",
"private": true,
"scripts": {
"dev": "nodemon --exec babel-node -w server.js -w nuxt.config.js -w api/ server.js",
"build": "nuxt build && babel server.js --out-file server.prod.js",
"start": "cross-env NODE_ENV=production node server.prod.js",
"precommit": "npm run lint",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore ."
},
"babel": {
"presets": [
"es2015",
"stage-2"
]
},
"dependencies": {
"axios": "^0.15.3",
"cross-env": "^3.1.4",
"express": "^4.14.0",
"highlight.js": "^9.11.0",
"markdown": "^0.5.0",
"marked": "^0.3.6",
"nuxt": "~0.10.5",
"vue-markdown": "^2.1.3"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-eslint": "^7.1.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"eslint": "^3.13.1",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-html": "^1.7.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"nodemon": "^1.11.0"
}
}