-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 851 Bytes
/
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
{
"name": "yjd-codelab-nodeapi",
"version": "1.0.0",
"description": "## 체크아웃",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test node_modules/.bin/mocha app/api/user/user.spec.js",
"start": "node bin/www"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeonghwan-kim/yjd-codelab-nodeapi.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jeonghwan-kim/yjd-codelab-nodeapi/issues"
},
"homepage": "https://github.com/jeonghwan-kim/yjd-codelab-nodeapi#readme",
"devDependencies": {
"mocha": "^3.2.0",
"should": "^11.1.2",
"supertest": "^2.0.1"
},
"dependencies": {
"body-parser": "^1.15.2",
"express": "^4.14.0",
"morgan": "^1.7.0",
"sequelize": "^3.29.0",
"sqlite3": "^3.1.8",
"swagger-ui": "^2.2.10"
}
}