-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.12 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
{
"name": "nuxt-tripfixed",
"scripts": {
"dev": "NUXT_PORT=3001 nuxt",
"build": "nuxt build",
"start": "NUXT_PORT=3000 nuxt start",
"generate": "nuxt generate",
"test:unit": "jest"
},
"jest": {
"globals": {
"vue-jest": {
"babelConfig": false
}
},
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/$1"
},
"moduleFileExtensions": [
"js",
"ts",
"json",
"vue"
],
"transform": {
"^.+\\.vue$": "vue-jest",
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"testURL": "http://localhost/"
},
"dependencies": {
"@nuxtjs/google-analytics": "^2.2.0",
"axios": "^0.19.0",
"moment": "^2.24.0",
"nuxt": "^2.8.1",
"ts-node": "^8.2.0",
"vue2-touch-events": "^2.0.0"
},
"devDependencies": {
"@nuxt/typescript": "^2.8.1",
"@types/jest": "^24.0.14",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-core": "^6.26.3",
"jest": "^24.8.0",
"node-sass": "^4.12.0",
"sass-loader": "^7.1.0",
"ts-jest": "^24.0.2",
"vue-jest": "^3.0.4"
}
}