-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.59 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.59 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
{
"name": "am-i-safe-microservice",
"version": "0.0.1",
"engines": {
"node": "12.13.0"
},
"description": "Text To Speech API Proxy for Extra Life",
"author": "MrCircleStrafe",
"license": "ISC",
"main": "./src/server.ts",
"scripts": {
"build": "tsc --build",
"clean": "rimraf node_modules && rimraf ./package-lock.json",
"coverage": "jest --coverage",
"project-generate": "bash platform/project-generate.sh",
"start": "node ./build/index.js",
"start-dev": "npx ts-node ./src/server.ts",
"test": "jest --watch",
"tsc": "tsc",
"lint": "eslint src/**/*.ts{,x}",
"lint:fix": "eslint src/**/*.ts{,x} --fix",
"update-template": "bash platform/update-template.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/123Spork/am-i-safe-microservice"
},
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.19.2",
"cors": "^2.8.5",
"express": "~4.16.0",
"express-rate-limit": "^6.3.0",
"http-status-codes": "^2.2.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^1.11.0",
"@typescript-eslint/parser": "^1.11.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"git-branch-is": "^2.1.0",
"jest": "^27.5.1",
"prettier": "^1.16.4",
"rimraf": "^3.0.2",
"supertest": "^4.0.2",
"ts-jest": "^26.4.4",
"ts-node": "^8.3.0",
"typescript": "^3.4.2"
}
}