forked from circlefin/payments-sample-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.09 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
{
"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",
"build": "nuxt build",
"start": "cross-env NODE_ENV=production nuxt start",
"generate": "nuxt 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.36",
"@fortawesome/free-brands-svg-icons": "5.15.4",
"@fortawesome/free-regular-svg-icons": "5.15.4",
"@fortawesome/free-solid-svg-icons": "5.15.4",
"@fortawesome/vue-fontawesome": "2.0.6",
"@nuxtjs/dotenv": "1.4.1",
"@nuxtjs/vuetify": "1.12.2",
"@types/card-validator": "7.0.1",
"@types/vue-the-mask": "0.11.1",
"@wagmi/core": "^0.8.19-cjs",
"axios": "0.24.0",
"card-validator": "8.1.1",
"cross-env": "7.0.3",
"ethers": "^5.7.2",
"express": "4.17.3",
"lodash": "4.17.21",
"nuxt": "2.15.8",
"nuxt-fontawesome": "0.4.0",
"nuxt-property-decorator": "2.9.1",
"openpgp": "5.0.1",
"sns-validator": "0.3.4",
"uuid": "^8.3.2",
"vue-json-pretty": "1.8.2",
"vue-the-mask": "^0.11.1",
"vuex-persist": "3.1.3"
},
"devDependencies": {
"@nuxt/types": "^2.15.8",
"@nuxt/typescript-build": "2.1.0",
"@nuxtjs/eslint-config-typescript": "8.0.0",
"@nuxtjs/eslint-module": "3.0.2",
"@types/applepayjs": "3.0.3",
"@types/googlepay": "0.6.4",
"@types/lodash": "4.14.177",
"@types/openpgp": "4.4.18",
"@types/uuid": "8.3.3",
"@vue/test-utils": "1.3.0",
"babel-eslint": "10.1.0",
"babel-jest": "27.4.2",
"eslint": "8.4.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-nuxt": "3.1.0",
"eslint-plugin-prettier": "4.0.0",
"husky": "7.0.4",
"jest": "27.4.3",
"lint-staged": "12.1.2",
"prettier": "2.5.1",
"ts-jest": "27.1.0",
"vue-jest": "4.0.0-beta.2"
}
}