-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 1.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
{
"name": "javascript-fundamentals-training",
"version": "1.0.0",
"description": "Javascript fundamentals traning landing",
"author": "Erick Wendel <[email protected]>",
"private": true,
"scripts": {
"dev": "npx cross-env NODE_ENV=development npx nodemon server/index.js --watch server",
"build": "nuxt build",
"start": "npx cross-env NODE_ENV=production node server/index.js",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint",
"preinstall": ""
},
"dependencies": {
"@chenfengyuan/vue-countdown": "^1.0.0",
"@nuxtjs/axios": "^5.0.0",
"@nuxtjs/google-analytics": "^2.0.2",
"badger-accordion": "^1.1.2",
"cross-env": "^5.2.0",
"koa": "^2.5.2",
"nuxt": "^2.0.0",
"nuxt-buefy": "^0.3.20"
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"eslint": "^5.0.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-vue": "^4.0.0",
"node-sass": "^4.9.4",
"nodemon": "^1.11.0",
"sass-loader": "^7.1.0"
}
}