-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (91 loc) · 2.77 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
{
"name": "forge-contract",
"version": "0.2.3",
"main": "app.js",
"author": "wangshijun <[email protected]> https://github.com/wangshijun",
"license": "MIT",
"scripts": {
"lint": "eslint server client app.js",
"build": "next build client",
"clean": "rm -rf client/dist server/dist",
"export": "next build client && next export client -o client/dist",
"lambda:netlify": "netlify-lambda build --config config/webpack.functions.js server/functions",
"lambda:serve": "netlify-lambda serve --config config/webpack.functions.js server/functions",
"netlify": "npm run clean && npm run export && npm run lambda:netlify",
"start": "nodemon app.js -w server -w app.js"
},
"lint-staged": {
"*.{js,jsx,mjs,ts,tsx,css,less,scss,json,graphql}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@arcblock/did": "^0.26.0",
"@arcblock/did-auth": "^0.26.9",
"@arcblock/did-auth-storage-mongo": "0.21.0",
"@arcblock/did-util": "^0.26.5",
"@arcblock/forge-util": "latest",
"@arcblock/forge-wallet": "latest",
"@arcblock/graphql-client": "latest",
"@arcblock/mcrypto": "latest",
"@arcblock/react-forge": "0.4.1",
"@arcblock/react-hooks": "0.4.1",
"@babel/polyfill": "^7.4.4",
"@material-ui/core": "^3.9.3",
"@material-ui/icons": "^3.0.2",
"@zeit/next-css": "^1.0.1",
"axios": "^0.18.0",
"body-parser": "^1.19.0",
"connect-mongo": "^2.0.3",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"debug": "^4.1.1",
"dotenv": "^8.0.0",
"express": "^4.16.4",
"express-session": "^1.16.1",
"js-cookie": "^2.2.0",
"jss": "^9.8.7",
"lodash": "^4.17.11",
"moment": "^2.24.0",
"mongoose": "5.4.23",
"morgan": "^1.9.1",
"multibase": "^0.6.0",
"netlify-lambda": "^1.4.7",
"next": "^8.1.0",
"next-plugin-custom-babel-config": "^1.0.2",
"nodemailer": "^6.1.1",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.1",
"react-hook-form": "^3.4.1",
"react-jss": "^8.6.1",
"react-swipeable-views": "^0.13.3",
"react-use": "^8.4.0",
"serverless-http": "^2.0.1",
"styled-components": "^4.2.0",
"validator": "^10.11.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"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.11.0",
"husky": "^2.2.0",
"lint-staged": "^8.1.6",
"nodemon": "^1.19.0",
"prettier": "^1.17.0",
"webpack-node-externals": "^1.7.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "lint-staged"
}
}
}