-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 776 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 776 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
{
"name": "dguan4",
"version": "1.0.0",
"description": "Personal Website Project",
"author": "David Guan",
"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": {
"@nuxtjs/axios": "^5.12.2",
"@nuxtjs/markdownit": "^1.2.10",
"@nuxtjs/style-resources": "^1.0.0",
"@nuxtjs/vuetify": "^1.11.2",
"cross-env": "^5.2.1",
"express": "^4.16.4",
"nuxt": "^2.14.4"
},
"devDependencies": {
"node-sass": "^4.14.1",
"nodemon": "^1.19.4",
"sass-loader": "^10.0.1",
"stylus": "^0.54.8",
"stylus-loader": "^3.0.2"
}
}