-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 771 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 771 Bytes
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
{
"name": "nuxt-sample",
"version": "1.0.0",
"description": "My posh Nuxt.js project",
"author": "[A",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
"build": "nuxt build",
"start": "cross-env NODE_ENV=production node server/index.js",
"generate": "nuxt generate"
},
"dependencies": {
"axios": "^0.17.1",
"cookie-parser": "^1.4.3",
"express": "latest",
"mint-ui": "^2.2.13",
"nuxt": "^1.0.0",
"source-map-support": "^0.4.15",
"vue": "^2.5.13"
},
"devDependencies": {
"cross-env": "^5.0.1",
"css-loader": "^0.28.9",
"node-sass": "^4.7.2",
"nodemon": "^1.11.0",
"sass-loader": "^6.0.6",
"vue-style-loader": "^3.1.2"
}
}