-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.89 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
{
"name": "poc-pact-members-web",
"version": "0.0.0",
"private": true,
"repository": "https://github.com/serverless-operations/poc-pact-members-web.git",
"scripts": {
"clean": "rm -rf .nuxt dist",
"setup": "yarn install",
"dev": "nuxt-ts",
"start": "nuxt-ts start",
"build": "nuxt-ts build",
"deploy:dev": "sls deploy --config deploy/serverless.yml --stage dev --region us-west-2",
"lint": "eslint ./src --ext .ts",
"lint:fix": "eslint ./src --fix --ext .ts",
"test:units": "jest --coverage --config test/jest.config.units.js",
"test:integrations": "jest --coverage --config test/jest.config.integrations.js",
"test:pact": "rm -rf .pacts && jest --coverage --config test/jest.config.pact.js",
"test:publish": "ts-node test/publish.ts"
},
"dependencies": {
"dayjs": "^1.8.24",
"nuxt": "^2.12.2"
},
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/plugin-transform-modules-commonjs": "^7.9.0",
"@nuxt/typescript-build": "^0.6.5",
"@nuxt/typescript-runtime": "^0.4.5",
"@nuxtjs/axios": "^5.9.7",
"@nuxtjs/dotenv": "^1.4.1",
"@nuxtjs/vuetify": "^1.11.0",
"@pact-foundation/pact": "^9.9.12",
"@types/jest": "^25.2.1",
"@types/node": "^13.11.1",
"@types/sinon": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"@vue/test-utils": "^1.0.0-beta.33",
"@wizeline/serverless-amplify-plugin": "^1.2.1",
"aws-sdk": "^2.658.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^25.3.0",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-vue": "^6.2.2",
"flush-promises": "^1.0.2",
"jest": "^25.3.0",
"jest-pact": "^0.5.3",
"rimraf": "^3.0.2",
"serverless": "^1.67.3",
"sinon": "^9.0.2",
"ts-jest": "^25.3.1",
"typescript": "^3.8.3",
"vue-jest": "^3.0.5"
}
}