-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.51 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
42
43
44
45
46
47
48
49
{
"name": "janken-api",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "export NODE_ENV=test; npm run db:drop; npm run db:setup; jest;",
"test:mariadb": "export NODE_ENV=test; npm run db:setup; jest;",
"db:setup": "sequelize-cli db:migrate; sequelize-cli db:seed:all",
"db:drop": "rm storage/*.sqlite3",
"dev": " nodemon graphql/index.js",
"lint": " eslint .",
"db:setup-prod": "sequelize-cli db:migrate --env=production; sequelize-cli db:seed:all --env=production"
},
"license": "MIT",
"dependencies": {
"@cosmjs/proto-signing": "^0.25.6",
"@cosmjs/stargate": "^0.26.0",
"@graphql-tools/graphql-file-loader": "^7.1.0",
"@graphql-tools/load": "^7.3.2",
"aws-sdk": "^2.1042.0",
"commander": "^8.3.0",
"cors": "^2.8.5",
"csv": "^5.5.3",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-graphql": "^0.12.0",
"graphql": "^15.6.0",
"graphql-upload": "^13.0.0",
"mariadb": "^2.5.4",
"secretjs": "^0.17.5",
"sequelize": "^6.6.5",
"uuid": "^8.3.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"eslint": "^7.32.0",
"eslint-config-google": "^0.14.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"jest": "^27.2.2",
"nodemon": "^2.0.13",
"sequelize-cli": "^6.2.0",
"sequelize-mig": "^3.1.3",
"sqlite3": "^5.0.2"
}
}