-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1 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
{
"name": "nuxt-learning-project",
"version": "1.0.0",
"description": "Nuxt.js project",
"author": "Maxime Rossignol",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"test": "yarn run lint",
"lint": "standard && eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "yarn run lint"
},
"dependencies": {
"axios": "^0.18.0",
"bootstrap": "^4.0.0",
"jquery": "^3.3.1",
"material-design-icons": "^3.0.1",
"node-sass": "^4.7.2",
"nuxt": "^1.0.0",
"popper.js": "^1.12.9",
"sass-loader": "^6.0.7"
},
"devDependencies": {
"babel-eslint": "^8.2.2",
"eslint": "^4.3.0",
"eslint-config-standard": "^11.0.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-html": "^4.0.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"standard": "^11.0.0"
}
}