-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
36 lines (36 loc) · 981 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
{
"name": "vtours",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "cross-env TEST=unit ava ./test/specs/**/*",
"test:e2e": "cross-env TEST=e2e ava ./test/e2e/**/*"
},
"dependencies": {
"@nuxt/content": "^1.9.0",
"@nuxtjs/axios": "^5.12.2",
"@nuxtjs/pwa": "^3.1.2",
"gsap": "^3.5.1",
"lodash": "^4.17.20",
"nuxt": "^2.14.6",
"three": "^0.119.1"
},
"devDependencies": {
"@ava/babel": "^1.0.1",
"@nuxtjs/tailwindcss": "^2.1.0",
"@vue/test-utils": "^1.1.0",
"ava": "^3.13.0",
"babel-plugin-module-resolver": "^4.0.0",
"cross-env": "^7.0.2",
"jsdom": "^16.3.0",
"jsdom-global": "^3.0.2",
"require-extension-hooks": "^0.3.3",
"require-extension-hooks-babel": "^1.0.0",
"require-extension-hooks-vue": "^3.0.0"
}
}