This repository has been archived by the owner on May 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 1.91 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
65
66
67
68
{
"name": "quick-express",
"description": "A ready to use rest API structure made with Express.js and Typescript.",
"version": "1.0.0",
"license": "MIT",
"repository": "github:scriptaria/quick-express",
"author": {
"email": "cmpjosf@outlook.com",
"name": "José Camelo de Freitas",
"url": "https://scriptaria.com/"
},
"main": "build/core/bootstrap.js",
"apidoc": {
"title": "Quick Express - Documentation"
},
"scripts": {
"build": "del-cli build && npm run doc && tsc",
"database": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js",
"doc": "apidoc -i src/ -o doc/",
"generate": "ts-node src/core/cli.ts generate",
"nodemon": "nodemon src/core/bootstrap.ts start dev",
"serve": "node build/core/bootstrap.js start prod",
"start": "npm run build && npm run serve",
"test": "jest"
},
"dependencies": {
"bcrypt": "5.0.0",
"boolean": "3.0.1",
"change-case": "4.1.1",
"cors": "2.8.5",
"dotenv": "8.2.0",
"express": "4.17.1",
"glob": "7.1.6",
"jsonwebtoken": "8.5.1",
"make-runnable": "1.3.6",
"module-alias": "2.2.2",
"reflect-metadata": "0.1.13",
"rxjs": "6.5.5",
"sqlite3": "4.1.1",
"typeorm": "0.2.25",
"validate.js": "0.13.1"
},
"devDependencies": {
"@types/bcrypt": "3.0.0",
"@types/cors": "2.8.6",
"@types/dotenv": "8.2.0",
"@types/express": "4.17.4",
"@types/glob": "7.1.1",
"@types/jest": "25.2.1",
"@types/jsonwebtoken": "8.3.9",
"@types/module-alias": "2.0.0",
"@types/node": "12.12.21",
"@types/supertest": "2.0.8",
"apidoc": "0.20.1",
"colors": "1.4.0",
"commander": "5.0.0",
"del-cli": "3.0.0",
"jest": "25.2.7",
"nodemon": "2.0.2",
"supertest": "4.0.2",
"ts-jest": "25.3.1",
"ts-node": "8.8.2",
"tsconfig-paths": "3.9.0",
"tslint": "5.20.1",
"tslint-eslint-rules": "5.4.0",
"typescript": "3.8.3"
}
}