-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.29 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": "realworld-nodejs-express-sequelize",
"version": "1.0.0",
"description": "> ### [YOUR_FRAMEWORK] codebase containing real world examples (CRUD, auth, advanced patterns, etc) that adheres to the [RealWorld](https://github.com/gothinkster/realworld) spec and API.",
"main": "index.js",
"scripts": {
"start": "node api/index.js",
"build": "npm run migrate",
"migrate": "sequelize db:migrate --migrations-path=api/migrations/ --config=api/config/config.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CovertIII/realworld-starter-kit.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/CovertIII/realworld-starter-kit/issues"
},
"homepage": "https://github.com/CovertIII/realworld-starter-kit#readme",
"dependencies": {
"ajv": "^6.10.2",
"bcrypt": "^3.0.6",
"bluebird": "^3.5.3",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.4.0",
"marked": "^0.7.0",
"morgan": "^1.9.1",
"pg": "^7.8.0",
"pg-hstore": "^2.3.2",
"pluralize": "^7.0.0",
"ramda": "^0.26.1",
"sequelize": "^5.21.2",
"sequelize-cli": "^5.4.0",
"slug": "^1.1.0"
}
}