-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.26 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.26 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "arag-api",
"version": "1.0.0",
"description": "To start the MySQL and Node app, use docker-compose up.",
"main": "src/server.ts",
"dependencies": {
"@types/glob": "^7.1.3",
"@types/winston": "^2.4.4",
"bcrypt": "^5.0.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"change-object-case": "^0.2.1",
"class-transformer": "^0.3.1",
"class-validator": "^0.12.2",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-winston": "^4.0.5",
"glob": "^7.1.6",
"jsonwebtoken": "^8.5.1",
"multiparty": "^4.2.2",
"mysql2": "^2.2.5",
"nodemailer": "^6.4.17",
"reflect-metadata": "^0.1.13",
"return-value": "^1.0.5",
"typeorm": "^0.2.29",
"typeorm-naming-strategies": "^2.0.0",
"typeorm-seeding": "^1.6.1",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/bcryptjs": "^2.4.2",
"@types/body-parser": "^1.19.0",
"@types/chai": "^4.2.14",
"@types/cors": "^2.8.8",
"@types/express": "^4.17.8",
"@types/faker": "^5.1.6",
"@types/jsonwebtoken": "^8.5.0",
"@types/mocha": "^8.0.3",
"@types/multiparty": "0.0.32",
"@types/node": "^14.14.5",
"@types/nodemailer": "^6.4.0",
"@types/sinon": "^9.0.8",
"chai": "^4.2.0",
"eslint": "^7.12.1",
"mocha": "^8.2.0",
"nodemon": "^2.0.6",
"rimraf": "^3.0.2",
"sinon": "^9.2.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
},
"scripts": {
"test": "mocha -r ts-node/register src/**/*.spec.ts",
"dev": "nodemon -L --verbose",
"start": "npm run build && node dist/server.js",
"build": "tsc --build",
"start:prod": "node dist/server.js",
"seed:config": "ts-node ./node_modules/typeorm-seeding/dist/cli.js config",
"seed:run": "ts-node ./node_modules/typeorm-seeding/dist/cli.js seed",
"typeorm": "node --require ts-node/register ./node_modules/typeorm/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DankGaming/ARAGAPI.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/DankGaming/ARAGAPI/issues"
},
"homepage": "https://github.com/DankGaming/ARAGAPI#readme"
}