-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.49 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.49 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "xercise-loader",
"version": "1.0.0",
"description": "database loader for xercise software",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:dev": "npm run migrate && nodemon --exec babel-node ./src/index.js",
"build": "babel src -d dist",
"start": "node dist/index.js",
"migrate": "sequelize db:migrate ",
"migrate:reset": "sequelize db:migrate:undo:all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/web-raiders/xercise-loader.git"
},
"keywords": [
"backend",
"graphql"
],
"author": "Chima Nnadika",
"license": "MIT",
"bugs": {
"url": "https://github.com/web-raiders/xercise-loader/issues"
},
"homepage": "https://github.com/web-raiders/xercise-loader#readme",
"dependencies": {
"apollo-server-express": "^2.11.0",
"bcryptjs": "^2.4.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"graphql": "^14.6.0",
"graphql-iso-date": "^3.6.1",
"jsonwebtoken": "^8.5.1",
"openssl": "^1.1.0",
"pg": "^7.18.2",
"pg-hstore": "^2.3.3",
"sequelize": "^5.21.5",
"sequelize-cli": "^5.5.1"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.6.2",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"eslint": "^6.2.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2"
}
}