-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
95 lines (95 loc) · 2.86 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
{
"name": "symbol-faucet",
"version": "0.0.5",
"description": "Symbol faucet web application",
"author": "Yoshiyuki Ieyama",
"homepage": "https://github.com/44uk/symbol-faucet",
"private": true,
"engines": {
"node": "8.11.1"
},
"scripts": {
"postinstall": "patch-package",
"dev": "cross-env NODE_ENV=development nodemon server/index.ts --watch server",
"build": "nuxt-ts build",
"generate": "nuxt-ts generate",
"start": "cross-env NODE_ENV=production ts-node -r tsconfig-paths/register server/index.ts",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint",
"test": "jest",
"heroku-postbuild": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/44uk/symbol-faucet.git"
},
"dependencies": {
"@nuxt/typescript-runtime": "^1.0.0",
"@nuxtjs/axios": "^5.12.0",
"@nuxtjs/dotenv": "^1.4.1",
"@nuxtjs/recaptcha": "^0.6.2",
"@types/express-serve-static-core": "^4.17.9",
"@types/lodash": "^4.14.158",
"@types/node": "^14.0.27",
"body-parser": "^1.19.0",
"bufferutil": "^4.0.1",
"cross-env": "^7.0.2",
"express": "^4.17.1",
"fs": "0.0.2",
"js-joda": "^1.11.0",
"lodash": "^4.17.19",
"net": "^1.0.2",
"nuxt": "^2.14.1",
"nuxt-buefy": "^0.3.31",
"pug": "^3.0.0",
"pug-loader": "^2.4.0",
"pug-plain-loader": "^1.0.0",
"querystring": "^0.2.0",
"rxjs": "^6.6.2",
"stylus": "^0.54.8",
"stylus-loader": "^3.0.2",
"symbol-sdk": "^0.20.6",
"tls": "0.0.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.9.7",
"utf-8-validate": "^5.0.2",
"vue-property-decorator": "^9.0.0",
"vuex-persistedstate": "^3.1.0"
},
"devDependencies": {
"@nuxt/types": "^2.14.1",
"@nuxt/typescript-build": "^2.0.2",
"@nuxtjs/eslint-config": "^3.1.0",
"@types/babel-core": "6.25.6",
"@types/body-parser": "^1.19.0",
"@types/eslint": "^7.2.0",
"@types/eslint-plugin-prettier": "3.1.0",
"@types/express": "^4.17.7",
"@types/nodemon": "^1.19.0",
"@types/prettier": "2.0.2",
"@types/pug": "^2.0.4",
"@types/stylus": "^0.48.33",
"@vue/test-utils": "^1.0.3",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.2.2",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": ">=14.1.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": ">=2.22.0",
"eslint-plugin-jest": ">=23.20.0",
"eslint-plugin-node": ">=11.1.0",
"eslint-plugin-nuxt": ">=1.0.0",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-promise": ">=4.2.1",
"eslint-plugin-standard": ">=4.0.1",
"eslint-plugin-vue": "^6.2.2",
"jest": "^26.2.2",
"nodemon": "^2.0.4",
"patch-package": "^6.2.2",
"prettier": "2.0.5",
"ts-node": "^8.10.2",
"vue-jest": "^3.0.6"
}
}