-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.3 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
39
40
41
42
43
{
"name": "culture-squad",
"version": "0.1.0",
"description": "Work in progress",
"author": "Ministry of Programming",
"private": true,
"scripts": {
"dev": "NODE_ENV=dev nuxt",
"build": "NODE_ENV=production nuxt build",
"start": "NODE_ENV=production nuxt start",
"start:staging": "NODE_ENV=staging nuxt start",
"generate:staging": "NODE_ENV=staging yarn clean && nuxt generate",
"generate:production": "NODE_ENV=production yarn clean && nuxt generate",
"clean": "rimraf dist",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint"
},
"dependencies": {
"@nuxtjs/axios": "^5.1.1",
"@nuxtjs/markdownit": "^1.2.3",
"bootstrap-vue": "^2.0.0-rc.15",
"cross-env": "^5.2.0",
"geolib": "^2.0.24",
"moment": "^2.24.0",
"nuxt": "^2.5.1",
"vue-clickout": "^1.0.0",
"vue2-google-maps": "^0.10.6",
"vuex-persist": "^1.1.4"
},
"devDependencies": {
"@babel/polyfill": "^7.4.0",
"@nuxtjs/style-resources": "^0.1.2",
"babel-eslint": "^8.2.1",
"bootstrap": "^4.3.1",
"eslint": "^5.0.1",
"eslint-friendly-formatter": "^4.0.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-vue": "^4.0.0",
"node-sass": "^4.11.0",
"sass-loader": "^7.1.0"
}
}