-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.6 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
{
"name": "camembert",
"version": "2.0.0",
"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.17.1",
"glob": "^7.1.4",
"inversify": "^5.0.1",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/body-parser": "1.17.0",
"@types/express": "^4.17.0",
"@types/glob": "^7.1.1",
"@types/helmet": "0.0.43",
"@types/inversify": "^2.0.33",
"@types/jwt-simple": "^0.5.33",
"@types/morgan": "^1.7.36",
"@types/node": "^12.7.0",
"body-parser": "^1.19.0",
"concurrently": "^4.1.1 ",
"helmet": "^3.20.0",
"json-inflector": "^1.1.0",
"morgan": "^1.9.1",
"nodemon": "^1.19.1",
"tslint-eslint-rules": "^5.4.0 ",
"typescript": "^3.5.3",
"validator.ts": "^0.2.2"
}
}