-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.11 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
{
"name": "nralcm",
"version": "1.0.0-alpha-2.9",
"description": "This is a framework based on NodeJs to manage rest api request lifecycle",
"keywords": [
"node-typescript",
"node rest api",
"nodejs with typescript"
],
"main": "dist/index.js",
"scripts": {
"test": "mocha -r ts-node/register src/**/*.spec.ts",
"start": "nodemon",
"build": "rm -rf ../nralcm-npm/* && cp package.json README.md ../nralcm-npm/ && tsc",
"lint": "npm run tslint \"src/**/*.ts\"",
"tslint": "tslint"
},
"author": "sandip",
"license": "ISC",
"dependencies": {
"express": "^4.16.2",
"reflect-metadata": "^0.1.12",
"rxjs": "^5.5.8"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/express": "^4.11.1",
"@types/jsonwebtoken": "^7.2.6",
"@types/mocha": "^5.0.0",
"@types/reflect-metadata": "^0.1.0",
"@types/sinon": "^4.3.0",
"bcryptjs": "^2.4.3",
"chai": "^4.1.2",
"jsonwebtoken": "^8.2.1",
"mocha": "^5.0.5",
"nodemon": "^1.15.1",
"sinon": "^4.4.9",
"ts-node": "^5.0.1",
"tslint": "^5.9.1",
"typescript": "^2.7.2"
}
}