This repository has been archived by the owner on Aug 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.7 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
{
"name": "api",
"version": "1.0.0",
"description": "The official API for Project KainPlan - The Mappening",
"main": "dist/server.js",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "jest --detectOpenHandles",
"test:noapi": "jest --testPathIgnorePatterns \"<rootDir>/src/server.spec.ts\"",
"prebuild": "rimraf dist/* && tslint -c tslint.json -p tsconfig.json --fix",
"build": "tsc",
"postbuild": "copyfiles -u 1 \"./src/res/**/*\" dist && copyfiles -u 1 \"./src/config/**/*\" dist",
"prestart": "npm run build",
"start": "node .",
"dev": "nodemon",
"build:docs": "typedoc --options ./typedoc.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KainPlan/api.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/KainPlan/api/issues"
},
"homepage": "https://github.com/KainPlan/api#readme",
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/cors": "^2.8.6",
"@types/jest": "^25.1.1",
"@types/mysql": "^2.15.8",
"@types/node": "^13.5.0",
"@types/supertest": "^2.0.8",
"copyfiles": "^2.2.0",
"jest": "^25.1.0",
"nodemon": "^2.0.2",
"rimraf": "^3.0.0",
"supertest": "^4.0.2",
"ts-jest": "^25.1.0",
"ts-node": "^8.6.2",
"tslint": "^6.0.0",
"typedoc": "^0.16.9",
"typedoc-plugin-external-module-name": "^3.0.0",
"typedoc-plugin-markdown": "^2.2.16",
"typescript": "^3.7.5"
},
"dependencies": {
"bcrypt": "^3.0.7",
"compare-versions": "^3.5.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"mysql": "^2.18.1",
"winston": "^3.2.1"
}
}