-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.51 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.51 KB
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
{
"name": "zilliqa-social-pay",
"version": "0.0.1",
"scripts": {
"db:migrate": "npx sequelize db:migrate",
"db:seed:all": "npx sequelize db:seed:all",
"db:create": "npx sequelize db:create",
"dev": "npm run db:migrate && npm run db:seed:all && cross-env DEBUG=zilliqa-social-pay:* node ./server/index.js",
"build": "next build",
"start": "cross-env NODE_ENV=production npm run db:migrate && cross-env NODE_ENV=production npm run db:seed:all && cross-env NODE_ENV=production node ./server/index.js",
"type-check": "tsc",
"lint:ts": "tslint -c tslint.json 'src/**/*.{ts,tsx}'",
"lint:ts:fix": "npm run lint:ts -- --fix",
"precommit": "npm run lint:ts"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
},
"dependencies": {
"@zilliqa-js/zilliqa": "^0.9.0",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cookie-session": "^1.4.0",
"dotenv": "^8.2.0",
"effector": "^20.13.4",
"effector-react": "^20.6.3",
"express": "^4.17.1",
"isomorphic-unfetch": "3.0.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"next": "latest",
"node-schedule": "^1.3.2",
"passport": "^0.4.1",
"passport-twitter-token": "^1.3.0",
"pg": "^8.0.0",
"pg-hstore": "^2.3.3",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-modal": "^3.11.2",
"react-notifications": "^1.5.0",
"react-paginate": "^6.3.2",
"react-responsive": "^8.0.3",
"react-spinners": "^0.8.1",
"react-tooltip": "^4.1.5",
"react-twitter-auth": "0.0.13",
"react-twitter-embed": "^3.0.3",
"sequelize": "^5.21.5",
"socket.io": "^2.3.0",
"styled-components": "^5.0.1",
"twitter": "^1.7.1",
"uuid": "^7.0.3"
},
"devDependencies": {
"@types/node": "^13.11.0",
"@types/react": "^16.9.32",
"@types/react-dom": "^16.9.6",
"@types/react-loader": "^2.4.3",
"@types/react-modal": "^3.10.5",
"@types/react-paginate": "^6.2.1",
"@types/react-responsive": "^8.0.2",
"@types/react-twitter-auth": "0.0.1",
"@types/socket.io-client": "^1.4.32",
"@types/styled-components": "^5.0.1",
"cross-env": "^7.0.2",
"husky": "^4.2.3",
"sequelize-cli": "^5.5.1",
"sqlite3": "^4.1.1",
"tslint": "^6.1.1",
"typescript": "^3.8.3"
},
"license": "MIT"
}