-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·122 lines (122 loc) · 3.71 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "forge-next-starter",
"version": "1.3.2",
"main": "starter.config.js",
"author": "wangshijun <[email protected]> https://github.com/wangshijun",
"license": "Apache-2.0",
"keywords": [
"arcblock",
"forge",
"starter",
"react",
"javascript"
],
"homepage": "https://github.com/ArcBlock/forge-dapp-starters/tree/master/packages/forge-next-starter",
"repository": "https://github.com/ArcBlock/forge-dapp-starters/tree/master/packages/forge-next-starter",
"bugs": {
"url": "https://github.com/ArcBlock/forge-dapp-starters/issues",
"email": "[email protected]"
},
"scripts": {
"lint": "eslint api src app.js",
"build": "next build src",
"clean": "rm -rf src/dist api/dist",
"export": "next build src && next export src -o src/dist",
"lambda:netlify": "netlify-lambda build api/functions",
"lambda:serve": "netlify-lambda serve api/functions",
"netlify": "npm run clean && npm run export && npm run lambda:netlify",
"dev": "nodemon app.js -w api -w app.js",
"start": "NODE_ENV=production node app.js -w api -w app.js > /dev/null 2>&1 &"
},
"lint-staged": {
"*.{js,jsx,mjs,ts,tsx,css,less,scss,json,graphql}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@arcblock/did": "^1.0.39",
"@arcblock/did-auth": "^1.2.0",
"@arcblock/did-auth-storage-mongo": "^1.0.13",
"@arcblock/did-react": "^0.73.2",
"@arcblock/forge-message": "^1.2.0",
"@arcblock/forge-sdk": "^1.2.0",
"@arcblock/forge-util": "^1.0.33",
"@arcblock/forge-wallet": "^1.0.39",
"@arcblock/mcrypto": "^1.0.39",
"@arcblock/react-hooks": "^0.73.0",
"@arcblock/ux": "^0.73.2",
"@babel/polyfill": "^7.4.4",
"@material-ui/core": "^4.9.7",
"@material-ui/icons": "4.5.1",
"@material-ui/styles": "^4.3.3",
"@zeit/next-bundle-analyzer": "^0.1.2",
"@zeit/next-css": "^1.0.1",
"antd": "^3.24.2",
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"chalk": "^2.4.2",
"compression": "^1.7.4",
"cookie-parser": "^1.4.4",
"core-js": "2.5.7",
"cors": "^2.8.5",
"debug": "^4.1.1",
"dotenv": "^8.0.0",
"express": "^4.16.4",
"express-bearer-token": "^2.4.0",
"gm": "^1.23.1",
"html2canvas": "1.0.0-rc.5",
"ip": "^1.1.5",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.11",
"moment": "^2.24.0",
"mongoose": "5.7.8",
"morgan": "^1.9.1",
"multibase": "^0.6.0",
"multiparty": "^4.2.1",
"netlify-lambda": "^1.4.7",
"next": "^9.3.1",
"next-compose-plugins": "^2.2.0",
"next-plugin-custom-babel-config": "^1.0.2",
"prop-types": "^15.7.2",
"qrcode.react": "^1.0.0",
"react": "^16.13.0",
"react-autolink-text2": "^3.2.0",
"react-dom": "^16.13.0",
"react-helmet": "^5.2.1",
"react-router-dom": "^5.0.0",
"react-select": "^2.4.1",
"react-use": "^13.26.3",
"reqwest": "^2.0.5",
"semver": "^7.1.2",
"serverless-http": "^2.0.1",
"shelljs": "^0.8.3",
"store": "^2.0.12",
"styled-components": "^5.0.1",
"xhr2": "^0.2.0"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"babel-plugin-import": "^1.12.2",
"babel-plugin-styled-components": "^1.10.0",
"chai": "^4.2.0",
"eslint": "5.3.0",
"eslint-config-airbnb": "17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.18.3",
"husky": "^2.2.0",
"lint-staged": "^8.1.6",
"nodemon": "^1.19.0",
"prettier": "^1.17.0",
"set-npm-auth-token-for-ci": "^2.0.13",
"webpack-node-externals": "^1.7.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "lint-staged"
}
},
"gitHead": "cee97e33c3c52729f6e0667b2901b9a801c2d709"
}