-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.09 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
{
"name": "bap-node-microframework",
"version": "0.3.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"tsc": "tsc",
"tsc:w": "tsc -w",
"lite": "lite-server",
"lint": "tslint",
"build": "npm run tsc && find . -type f -depth 1 -name '*.ts' | xargs -I {} tsc {} typings/index.d.ts custom_typings/main.d.ts --declaration --module commonjs",
"test": "npm run pretest && mocha test/**/*.js"
},
"author": "Cedric LOMBARDOT <[email protected]>",
"license": "ISC",
"dependencies": {
"bcrypt": "^0.8.5",
"body-parser": "^1.14.1",
"config": "^1.16.0",
"cors": "^2.7.1",
"es6-promise": "^3.0.2",
"es6-shim": "^0.33.3",
"express": "^4.13.3",
"file-stream-rotator": "0.0.6",
"forms": "^1.1.4",
"js-yaml": "^3.4.3",
"mongoose": "^4.4.19",
"morgan": "^1.7.0",
"multer": "^1.1.0",
"oauth2-server": "^2.4.1",
"orm": "^2.1.27",
"sequelize": "^3.19.2",
"socket.io": "^1.4.5"
},
"devDependencies": {
"faker": "^3.0.1",
"should": "^8.2.1",
"supertest": "^1.1.0",
"typescript": "^1.8"
}
}