generated from Orang-utan/ts-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.35 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
{
"name": "ts-boilerplate",
"version": "1.0.0",
"main": "index.ts",
"license": "MIT",
"scripts": {
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"setup": "yarn install && cd src/client && yarn install",
"dev": "concurrently \"yarn server\" \"yarn client\"",
"server": "ts-node-dev --respawn src/index.ts",
"client": "cd src/client && yarn start",
"start": "ts-node ./src/index.ts",
"build": "tsc",
"heroku-postbuild": "cd src/client && yarn install && yarn build"
},
"devDependencies": {
"@types/react-image-gallery": "^1.0.1",
"babel-eslint": "^10.1.0",
"concurrently": "^5.2.0",
"eslint": "^7.4.0",
"eslint-config-airbnb-typescript": "^8.0.2",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"prettier": "^2.0.5",
"ts-node-dev": "^1.0.0-pre.49"
},
"dependencies": {
"@babel/core": "^7.12.9",
"@sendgrid/mail": "^7.2.4",
"@types/bcrypt": "^3.0.0",
"@types/body-parser": "^1.19.0",
"@types/chart.js": "^2.9.28",
"@types/cors": "^2.8.6",
"@types/emoji-mart": "^3.0.4",
"@types/express": "^4.17.7",
"@types/express-status-monitor": "^1.2.1",
"@types/jsonwebtoken": "^8.5.0",
"@types/lodash": "^4.14.157",
"@types/mongoose": "^5.7.29",
"@types/node": "^14.0.14",
"@types/node-schedule": "^1.3.1",
"@types/react-image-gallery": "^1.0.1",
"@types/socket.io": "^2.1.8",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"babel": "^6.23.0",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"chart.js": "^2.9.4",
"cors": "^2.8.5",
"cpx": "^1.5.0",
"dotenv": "^8.2.0",
"emoji-mart": "^3.0.0",
"express": "^4.17.1",
"express-status-monitor": "^1.3.3",
"faker": "^5.1.0",
"json2csv": "^5.0.5",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.19",
"mongodb": "^3.6.3",
"mongoose": "^5.9.21",
"node-cron": "^2.0.3",
"node-schedule": "^1.3.2",
"objects-to-csv": "^1.3.6",
"react-image-gallery": "^1.0.8",
"react-query": "^3.5.5",
"react-switch": "^5.0.1",
"shortid": "^2.2.15",
"socket.io": "^2.3.0",
"ts-node": "^8.10.2",
"twilio": "^3.52.0",
"typescript": "^3.9.5"
}
}