-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.78 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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "server.ts",
"scripts": {
"prod": "ts-node -T api/server.ts",
"api": "nodemon api/server.ts",
"scrape": "nodemon scraper/scraper.ts",
"test": "npx ts-mocha -p ./tsconfig.json test/**/*.test.ts",
"lint": "eslint --ext .js,.ts api/**/* & eslint --ext .js,.ts scraper/**/*",
"setup": "./scripts/setup.sh",
"db-start": "./scripts/db-start.sh || sh ./scripts/db-start.sh || (cls & echo ERROR: Ensure that you run this command in Git Bash!)",
"db-stop": "./scripts/db-stop.sh || sh ./scripts/db-stop.sh || (cls & echo ERROR: Ensure that you run this command in Git Bash!)",
"db-reset": "./scripts/db-reset.sh || sh ./scripts/db-reset.sh || (cls & echo ERROR: Ensure that you run this command in Git Bash!)"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BroncoDirectMe/Backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/BroncoDirectMe/Backend/issues"
},
"homepage": "https://github.com/BroncoDirectMe/Backend#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"graphql": "^16.6.0",
"graphql-request": "^5.0.0",
"mysql2": "^2.3.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/mocha": "^10.0.0",
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^22.0.0",
"eslint-plugin-jsdoc": "^44.2.5",
"mocha": "^10.0.0",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"ts-mocha": "^10.0.0"
}
}