-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 1.94 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
69
70
71
72
{
"name": "coptic.io",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"start": "ts-node --transpile-only ./index.ts",
"start:windows": "SET NODE_ENV=development ts-node --transpile-only ./index.ts",
"dev": "nodemon index.ts",
"build-frontend": "cd micro-frontend; npm i; npm run build",
"test": "jest",
"test:unit": "cross-env NODE_ENV=test mocha src/api/tests/unit",
"postinstall": "pm2 install typescript"
},
"repository": {
"type": "git",
"url": "git@github.com:abanobmikaeel/coptic.io.git"
},
"author": "Abanob Mikaeel",
"license": "MIT",
"bugs": {
"url": "https://github.com/abanobmikaeel/coptic.io/issues"
},
"homepage": "https://github.com/abanobmikaeel/coptic.io/blob/main/README.md",
"dependencies": {
"@babel/preset-env": "^7.20.2",
"@types/joi": "^17.2.3",
"babel-jest": "^29.3.1",
"body-parser": "^1.19.1",
"cors": "^2.8.5",
"dotenv-safe": "^8.2.0",
"express": "^4.17.2",
"express-graphql": "^0.12.0",
"express-query-boolean": "^2.0.0",
"express-validation": "^3.0.8",
"graphql": "^15.8.0",
"http-proxy-middleware": "^2.0.6",
"http-status": "^1.5.0",
"joi": "^17.5.0",
"morgan": "^1.10.0",
"pm2": "^5.1.2",
"serve-static": "^1.15.0",
"supertest": "^6.3.3",
"swagger-ui-express": "^4.3.0",
"ts-mocha": "^8.0.0",
"winston": "^3.4.0",
"yamljs": "^0.3.0"
},
"fixtures": "ts-node fixtures/index",
"devDependencies": {
"@types/async-csv": "^2.1.1",
"@types/body-parser": "^1.19.2",
"@types/chai": "^4.3.0",
"@types/cors": "^2.8.12",
"@types/dotenv-safe": "^8.1.2",
"@types/expect": "^24.3.0",
"@types/express": "^4.17.13",
"@types/jest": "^29.2.4",
"@types/mocha": "^9.0.0",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.5",
"@types/supertest": "^2.0.12",
"@types/yamljs": "^0.2.31",
"chai": "^4.3.4",
"jest": "^29.3.1",
"mocha": "^8.0.0",
"nodemon": "^2.0.15",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}