-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.68 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "bigduck-nuxt",
"version": "1.0.0",
"description": "Nuxt.js project",
"author": "Keith Mancuso <[email protected]>",
"private": true,
"dependencies": {
"@nuxtjs/axios": "^5.1.1",
"@nuxtjs/google-analytics": "^2.0.2",
"@nuxtjs/proxy": "^1.1.4",
"axios": "^0.18.0",
"babel-polyfill": "^6.26.0",
"bootstrap": "4.0.0-alpha.6",
"crypto-js": "^3.1.9-1",
"date-fns": "^1.29.0",
"flickity": "^2.1.0",
"flickity-imagesloaded": "^2.0.0",
"gulp": "^3.9.1",
"intersection-observer": "^0.5.0",
"js-cookie": "^2.2.0",
"lodash": "^4.17.4",
"node-sass": "^4.8.3",
"nuxt": "^1.4.0",
"sass-loader": "^6.0.7",
"sass-resources-loader": "^1.3.3",
"scrollama": "^1.4.1",
"vee-validate": "^2.0.6",
"vue-instantsearch": "^1.5.2",
"vue-scrollto": "2.11.0",
"vue-style-loader": "^4.1.0",
"vue-viewport": "^0.0.1",
"vue-waypoint": "^3.2.2",
"webpack": "^3.11.0"
},
"scripts": {
"dev": "PROXY_API_URL=http://bigduck.test nuxt",
"build": "nuxt build",
"start": "API_URL=https://bigducknyc.com/wp-json nuxt start",
"db": "gulp db",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint",
"test": "ava --serial --verbose",
"dev-debug": "node --inspect --debug-brk node_modules/.bin/nuxt"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"eslint": "^4.19.0",
"eslint-config-standard": "^11.0.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-html": "^3.2.2",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1"
},
"config": {
"nuxt": {
"port": "4000"
}
}
}