-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 994 Bytes
/
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
{
"name": "apateo-prj",
"version": "1.0.0",
"description": "Nuxt.js project",
"author": "Hanbyul Jo <[email protected]>",
"private": true,
"scripts": {
"dev": "DEPLOY_ENV=DEV nuxt",
"generate": "nuxt generate",
"lintfix": "eslint --fix --ext .js,.vue --ignore-path .gitignore ."
},
"dependencies": {
"leaflet": "^1.7.1",
"nuxt": "~2.14.6",
"tangram": "^0.21.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.5.7",
"@vue/cli-service": "^4.5.7",
"@vue/test-utils": "^1.1.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-vue": "7.0.1",
"husky": "^4.3.0",
"node-sass": "^4.14.1",
"nuxt-purgecss": "^1.0.0",
"prettier": "2.1.2",
"sass-loader": "^10.0.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}