-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.52 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.52 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
{
"name": "celapi",
"version": "1.0.0",
"private": "true",
"description": "",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"watch-build": "tsc-watch --onSuccess \"npm run main\"",
"main": "npm run serve & npm run doc",
"serve": "nodemon ./compiled/index.js",
"test": "node compiled/tests/test.js",
"web": "node ./compiled/index.js",
"doc": "apidoc -i src/server/ -o compiled/server/doc",
"push": "tsc && npm run doc && git commit -a && git push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CEL-project/CEL-API.git"
},
"keywords": [],
"author": "TreeAtOr Arfabika",
"license": "MIT",
"bugs": {
"url": "https://github.com/CEL-project/CEL-API/issues"
},
"homepage": "https://github.com/CEL-project/CEL-API#readme",
"dependencies": {
"@types/express-flash": "^0.0.2",
"@types/express-session": "^1.17.3",
"@types/joi": "^17.2.3",
"@types/passport": "^1.0.6",
"@types/passport-local": "^1.0.33",
"apidoc": "^0.28.1",
"express": "^4.17.1",
"express-flash": "^0.0.2",
"express-session": "^1.17.2",
"fastify": "^3.18.0",
"fetch": "^1.1.0",
"fs": "^0.0.1-security",
"jest": "^27.0.6",
"joi": "^17.4.0",
"mongoose": "^5.12.14",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.7",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"tsc": "^2.0.3",
"tsc-watch": "^4.4.0",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@types/express": "^4.17.12"
}
}