-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
116 lines (116 loc) · 3.68 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
{
"name": "inveset_ico",
"version": "1.0.0",
"description": "Inveset ICO",
"main": "./server/index.js",
"scripts": {
"start": "node ./dist/index.js",
"start:client": "cd client && npm start",
"start:server": "ts-node ./server/index.ts",
"watch:server": "concurrently \"tsc -w\" \"nodemon ./dist/index.js\"",
"build:client": "npm run build --prefix client",
"build:server": "tsc -b .",
"build": "npm run build:server && npm run build:client",
"heroku-prebuild": "cd client && npm install --dev",
"heroku-postbuild": "npm run build",
"dev": "concurrently \"tsc -w\" \"nodemon ./dist/index.js\" \"cd client && npm start\"",
"prod": "npm run build:client && cross-env NODE_ENV=production npm run watch:server",
"clean:soft": "rm -rf dist && cd client && rm -rf build",
"clean:client": "cd client && rm -rf node_modules build",
"clean:server": "rm -rf node_modules dist",
"lint": "eslint \"**/*.{ts,tsx,js}\"",
"lint:fix": "eslint \"**/*.{ts,tsx,js}\" --fix",
"format": "prettier \"**/*.{ts,tsx,js,css}\" --write",
"format:staged": "pretty-quick --staged",
"lf": "npm run lint && npm run format"
},
"author": "Devs studio",
"license": "MIT",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/compression": "^1.7.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.9",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.11",
"@types/express-mongo-sanitize": "^1.3.2",
"@types/express-rate-limit": "^5.1.1",
"@types/jsonwebtoken": "^8.5.0",
"@types/memory-cache": "^0.2.1",
"@types/morgan": "^1.9.2",
"@types/multer": "^1.4.5",
"@types/multer-gridfs-storage": "^4.0.1",
"@types/node": "^14.14.27",
"@types/passport": "^1.0.6",
"@types/passport-google-oauth20": "^2.0.6",
"@types/passport-jwt": "^3.0.5",
"@types/sharp": "^0.27.1",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"concurrently": "^5.3.0",
"cross-env": "^7.0.3",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-security": "^1.4.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"npm run format:staged",
"eslint --cache --fix"
]
},
"engines": {
"node": ">=10"
},
"dependencies": {
"@sendgrid/mail": "^7.4.2",
"@truffle/hdwallet-provider": "^1.2.4",
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-mongo-sanitize": "^2.0.2",
"express-rate-limit": "^5.2.6",
"express-static-gzip": "^2.1.1",
"fs-extra": "^0.30.0",
"helmet": "^4.4.1",
"http-status-codes": "^2.1.4",
"joi": "^17.4.0",
"jsonwebtoken": "^8.5.1",
"memory-cache": "^0.2.0",
"mongoose": "^5.11.15",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"multer-gridfs-storage": "^4.2.0",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.0",
"sharp": "^0.27.2",
"solc": "^0.8.2",
"web3": "^1.3.4",
"xss-clean": "^0.1.1"
}
}