-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
51 lines (51 loc) · 1.48 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
{
"name": "leftonread-server",
"version": "1.0.0",
"main": "src/index.js",
"license": "MIT",
"scripts": {
"build": "yarn tsc",
"start": "node dist/index.js",
"dev": "concurrently \"yarn tsc --watch\" \"nodemon -q dist/index.js\"",
"lint": "eslint '*/**/*.{js,ts}'",
"tsc": "./node_modules/typescript/bin/tsc"
},
"dependencies": {
"@amplitude/analytics-node": "^0.5.0",
"@sentry/node": "^7.11.1",
"@sentry/tracing": "^7.11.1",
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"firebase": "^9.9.3",
"google-spreadsheet": "^3.3.0",
"http-status-codes": "^2.2.0",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.7.7",
"stripe": "^10.6.0",
"typescript": "^4.7.4",
"uuid": "^8.3.2"
},
"devDependencies": {
"@leftonread/eslint-config": "file:../eslint-config",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/google-spreadsheet": "^3.3.0",
"@types/morgan": "^1.9.3",
"@types/multer": "^1.4.7",
"@types/node": "^18.6.3",
"@types/nodemailer": "^6.4.4",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"concurrently": "^7.3.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"nodemon": "^2.0.19",
"prettier": "^2.7.1"
}
}