-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 3.26 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "cardclay",
"main": "server.ts",
"version": "0.0.1",
"private": true,
"description": "Cardlay demo project",
"author": "makamekm",
"license": "MIT",
"engines": {
"node": "~10.15.3"
},
"scripts": {
"dev": "IS_SEPARATE=true run-p dev:ui dev:api dev:gql",
"dev:ui": "nuxt",
"dev:gql": "ts-node-dev --project ./tsconfig.express.json generate-typings",
"start": "NODE_ENV=production HOST=0.0.0.0 nuxt start",
"build": "nuxt build",
"heroku-postbuild": "npm run build",
"dev:api": "ts-node-dev --project ./tsconfig.express.json ./api.ts",
"lint": "vue-tslint -c tslint.json",
"lint:report": "tslint -t json -o tslint-report.json --project . --force",
"test": "JEST_PROJECT=unit,int,e2e jest --coverage",
"test:simple": "JEST_PROJECT=unit,int jest",
"test:p2p": "JEST_PROJECT=p2p jest",
"test:all": "JEST_PROJECT=unit,int,e2e,p2p jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r ts-node/register node_modules/.bin/jest --runInBand",
"verify:slow": "run-p build lint test:all",
"verify:fast": "run-p lint test:simple"
},
"husky": {
"hooks": {
"pre-commit": "npm run verify:fast",
"pre-push": "npm run verify:slow"
}
},
"dependencies": {
"@nestjs/common": "6.5.3",
"@nestjs/core": "6.5.3",
"@nestjs/graphql": "6.4.2",
"@nestjs/jwt": "6.1.1",
"@nestjs/passport": "6.1.0",
"@nestjs/platform-express": "6.5.3",
"@nuxt/typescript": "2.8.1",
"@nuxtjs/axios": "5.6.0",
"@nuxtjs/proxy": "1.3.3",
"@nuxtjs/pwa": "3.0.0-beta.16",
"@nuxtjs/style-resources": "1.0.0",
"@types/express": "4.17.1",
"@types/jest": "24.0.18",
"@types/node": "12.7.2",
"@types/webpack-env": "1.14.0",
"@vue/test-utils": "1.0.0-beta.29",
"apollo-server-express": "2.8.2",
"buefy": "0.8.2",
"cookie": "0.4.0",
"express": "4.17.1",
"graphql": "14.4.2",
"graphql-tools": "4.0.5",
"node-sass": "4.12.0",
"nodemon": "1.19.1",
"nuxt": "2.8.1",
"nuxt-property-decorator": "2.3.0",
"passport": "0.4.0",
"passport-jwt": "4.0.0",
"pg": "7.12.1",
"reflect-metadata": "0.1.13",
"rxjs": "6.5.2",
"sass-loader": "7.3.1",
"ts-node": "8.3.0",
"typeorm": "0.2.18",
"typescript": "3.5.3",
"vee-validate": "2.2.15",
"vuex-class": "0.3.2",
"vuex-shared-mutations": "1.0.2",
"debounce": "1.2.0",
"vue-rx": "6.2.0",
"popper.js": "1.15.0",
"portal-vue": "2.1.6",
"vue-dom-portal": "0.1.6",
"sifter": "0.5.3",
"nuxt-vuex-localstorage": "1.2.6"
},
"devDependencies": {
"@types/supertest": "2.0.8",
"@types/expect-puppeteer": "3.3.1",
"@types/jest-environment-puppeteer": "4.3.1",
"@types/puppeteer": "1.19.1",
"@types/jest-image-snapshot": "2.8.0",
"@nestjs/testing": "6.5.3",
"npm-run-all": "4.1.5",
"jest": "24.9.0",
"supertest": "4.0.2",
"ts-jest": "24.0.2",
"tslint": "5.19.0",
"vue-tslint": "0.3.2",
"jest-serializer-vue": "2.0.2",
"vue-jest": "4.0.0-beta.2",
"jest-image-snapshot": "2.9.0",
"jest-puppeteer": "4.3.0",
"puppeteer": "1.19.0",
"get-port": "5.0.0",
"ts-node-dev": "1.0.0-pre.39",
"husky": "3.0.4",
"jest-sonar": "0.2.2"
}
}