This repository was archived by the owner on Mar 2, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.89 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.89 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
{
"name": "api",
"version": "0.0.1",
"main": "built/server.js",
"engines": {
"node": "14.x",
"yarn": "1.x"
},
"repository": "git@github.com:AppliedEnglish/api.git",
"author": "Anirudh Nimmagadda <anirudh.nimmagadda@gmail.com>",
"scripts": {
"build:watch": "tsc --watch",
"prebuild": "yarn clean",
"build": "tsc",
"clean": "rm -r built && mkdir built && touch built/.keep",
"dev": "yarn build:watch & yarn test:watch & nodemon",
"prestart": "yarn build",
"start": "node built/server.js",
"pretest": "yarn build",
"test": "jest built/server.test.js",
"test:watch": "jest --watch built/server.test.js"
},
"dependencies": {
"@types/ioredis": "^4.22.0",
"bcrypt": "^5.0.0",
"connect-redis": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"email-templates": "^8.0.3",
"express": "^4.17.1",
"express-session": "^1.17.1",
"express-validator": "^6.9.2",
"ioredis": "^4.23.0",
"lodash": "^4.17.21",
"pg": "^8.5.1",
"pug": "^3.0.0",
"redis": "^3.0.2",
"reflect-metadata": "^0.1.13",
"supertest": "^6.1.3",
"typeorm": "^0.2.30",
"validator": "^13.5.2"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.0",
"@types/bcrypt": "^3.0.0",
"@types/connect-redis": "^0.0.16",
"@types/cors": "^2.8.9",
"@types/email-templates": "^8.0.1",
"@types/express": "^4.17.11",
"@types/express-session": "^1.17.3",
"@types/jest": "^26.0.20",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.25",
"@types/pug": "^2.0.4",
"@types/redis": "^2.8.28",
"@types/supertest": "^2.0.10",
"@types/validator": "^13.1.3",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"eslint": "^7.19.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"typescript": "^4.1.3"
},
"license": "UNLICENSED"
}