This repository has been archived by the owner on May 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.86 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
{
"name": "peer-server",
"version": "1.0.0",
"description": "server for Peer",
"main": "src/server.ts",
"repository": "https://github.com/Peer-Stevens/peer-server.git",
"author": "Andrew Jones <[email protected]>",
"license": "UNLICENSED",
"private": true,
"scripts": {
"build": "tsc",
"watch": "nodemon --exec ts-node -- ./src/server.ts",
"dev": "ts-node ./src/server.ts",
"start": "node ./dist/src/server.js",
"prod": "yarn run build && yarn run start",
"prepare": "husky install",
"lint-staged": "pretty-quick --staged && lint-staged",
"lint": "eslint --config .eslintrc.js --fix . && prettier --config prettier.config.js --write \"**/*.{js,jsx,json,ts,tsx,md,mdx,css,html,yml,yaml,scss}\"",
"seed": "ts-node ./src/seed/seed.ts",
"test": "jest --watchAll"
},
"dependencies": {
"@googlemaps/google-maps-services-js": "3.3.11",
"axios": "0.26.1",
"cors": "2.8.5",
"dotenv": "16.0.0",
"express": "4.17.3",
"express-rate-limit": "6.3.0",
"mongodb": "4.4.1",
"newrelic": "8.9.1",
"passport": "0.5.2",
"passport-local": "1.0.0",
"typescript": "4.6.2"
},
"devDependencies": {
"@types/cors": "2.8.12",
"@types/express": "4.17.13",
"@types/express-rate-limit": "5.1.3",
"@types/jest": "27.4.1",
"@types/newrelic": "7.0.3",
"@types/node": "16.11.26",
"@types/passport": "1.0.7",
"@types/passport-local": "1.0.34",
"@types/supertest": "2.0.12",
"@typescript-eslint/eslint-plugin": "5.16.0",
"@typescript-eslint/parser": "5.16.0",
"eslint": "8.11.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-prettier": "4.0.0",
"husky": "7.0.4",
"jest": "27.5.1",
"lint-staged": "12.3.7",
"nodemon": "2.0.15",
"peer-types": "1.0.5",
"prettier": "2.6.0",
"pretty-quick": "3.1.3",
"ts-jest": "27.1.3",
"ts-node": "10.7.0"
},
"lint-staged": {
"*.{ts,js}": "eslint --cache --fix"
}
}