-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.63 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
{
"name": "camembert",
"version": "3.0.5",
"type": "module",
"description": "A light framwork to create simple backend with express and dependency injection",
"keywords": [
"express",
"typescript",
"dependency injection",
"DI",
"form"
],
"author": "WiziShop",
"license": "ISC",
"main": "lib/camembert/index.js",
"typings": "lib/camembert/index.d.ts",
"scripts": {
"nodemon:debug": "NODE_ENV=dev nodemon --inspect=5858",
"watch": "npm run concurrently \"npm run tsc:lib:w\" \"npm run tsc:demo:w\" \"npm run nodemon:debug dist/demo-app/index.js\"",
"start:demo": " npm run build && npm run watch",
"concurrently": "concurrently",
"test": "NODE_ENV=test jasmine",
"tsc:demo": "tsc -p ./src/demo-app",
"tsc:demo:w": "tsc -p ./src/demo-app -w",
"tsc:lib": "tsc -p ./src/lib",
"tsc:lib:w": "tsc -p ./src/lib --outDir ./node_modules/camembert -w",
"build": "rm -rf lib && npm run tsc:lib"
},
"dependencies": {
"express": "^4.18.2",
"glob": "^8.1.0",
"inversify": "^6.0.1",
"inversify-inject-decorators": "^3.1.0",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/body-parser": "1.19.2",
"@types/express": "latest",
"@types/glob": "^8.0.1",
"@types/helmet": "0.0.48",
"@types/inversify": "^2.0.33",
"@types/jwt-simple": "^0.5.33",
"@types/morgan": "^1.9.4",
"@types/node": "^18.13.0",
"body-parser": "^1.20.1",
"concurrently": "^7.6.0",
"helmet": "^6.0.1",
"json-inflector": "^1.1.0",
"morgan": "^1.10.0",
"nodemon": "^2.0.20",
"typescript": "^4.9.5",
"validator.ts": "^0.2.2"
}
}