forked from kristinfritsch/payments-sample-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.99 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
{
"name": "payments-sample-app",
"version": "1.0.0",
"description": "Sample App for Payments API",
"author": "Circle",
"license": "MIT",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nuxt-ts",
"build": "nuxt-ts build",
"start": "cross-env NODE_ENV=production nuxt-ts start",
"generate": "nuxt-ts generate",
"lint": "eslint --ext .ts,.js,.vue .",
"test": "jest",
"test:watch": "jest --watchAll",
"testall": "yarn run lint && yarn run test"
},
"lint-staged": {
"*.{js,vue}": "eslint"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "1.2.28",
"@fortawesome/free-brands-svg-icons": "5.13.0",
"@fortawesome/free-regular-svg-icons": "5.13.0",
"@fortawesome/free-solid-svg-icons": "5.13.0",
"@fortawesome/vue-fontawesome": "0.1.9",
"@nuxt/typescript-runtime": "0.4.9",
"@nuxtjs/dotenv": "1.4.1",
"@nuxtjs/vuetify": "1.11.2",
"@types/card-validator": "4.1.0",
"@types/vue-the-mask": "0.11.0",
"axios": "0.21.1",
"card-validator": "6.2.0",
"cross-env": "7.0.2",
"lodash": "4.17.21",
"nuxt": "2.12.2",
"nuxt-fontawesome": "0.4.0",
"nuxt-property-decorator": "2.7.2",
"openpgp": "4.10.4",
"sns-validator": "0.3.4",
"vue-json-pretty": "1.6.3",
"vue-the-mask": "0.11.1",
"vuex-persist": "2.2.0"
},
"devDependencies": {
"@nuxt/typescript-build": "1.0.2",
"@nuxtjs/eslint-config": "3.0.0",
"@nuxtjs/eslint-config-typescript": "2.0.0",
"@nuxtjs/eslint-module": "2.0.0",
"@types/lodash": "4.14.155",
"@types/openpgp": "4.4.12",
"@types/uuid": "8.0.0",
"@vue/test-utils": "1.0.3",
"babel-eslint": "10.1.0",
"babel-jest": "26.0.1",
"eslint": "7.2.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-nuxt": "1.0.0",
"eslint-plugin-prettier": "3.1.3",
"husky": "4.2.5",
"jest": "26.0.1",
"lint-staged": "10.2.9",
"prettier": "2.0.5",
"ts-jest": "26.1.0",
"vue-jest": "4.0.0-beta.2"
}
}