-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 754 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 754 Bytes
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": "restful-express-sequelize",
"version": "1.2.1",
"description": "Using Sequelize ORM for Express RESTful Services (Endpoints)",
"main": "index.js",
"types": "index.d.ts",
"readme": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/droideveloper/RESTful"
},
"keywords": [
"Sequelize",
"ORM",
"Express",
"RESTful"
],
"author": "Fatih ŞEN",
"license": "MIT",
"dependencies": {
"@types/node": "^7.0.12",
"@types/sequelize": "^4.0.49",
"express": "^4.15.2",
"rxjs": "^5.2.0",
"sequelize": "^3.30.4",
"typescript": "^3.0.3"
},
"devDependencies": {
"@types/express": "^4.0.35",
"@types/node": "^7.0.4",
"@types/sequelize": "^4.0.39"
}
}