-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.91 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.91 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
55
56
57
58
59
60
61
{
"author": "Marc-Olivier Laux <marc-olivier@matlaux.net> (https://github.com/molaux)",
"license": "MIT",
"description": "Sequelize GraphQL Schema Builder demonstration example",
"keywords": [],
"type": "module",
"main": "src/server.js",
"name": "@molaux/sequelize-graphql-schema-builder-example",
"version": "1.2.0",
"dependencies": {
"@molaux/sequelize-graphql-schema-builder": "^2.4.1",
"apollo-client": "^2.6.10",
"apollo-link-ws": "^1.0.20",
"apollo-server-express": "^3.12.0",
"babel-jest": "^29.5.0",
"bcrypt": "^5.1.0",
"colors": "^1.4.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-jwt": "^8.4.1",
"fast-deep-equal": "^3.1.3",
"graphql": "^16.6.0",
"graphql-relay": "^0.10.0",
"graphql-request": "^5.2.0",
"graphql-sequelize": "^9.5.1",
"graphql-subscriptions": "^2.0.0",
"graphql-tools": "^8.3.19",
"graphql-type-json": "^0.3.2",
"jsonwebtoken": "^9.0.0",
"node-fetch": "^3.3.0",
"pg": "^8.10.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.29.1",
"sqlite3": "^5.1.4",
"subscriptions-transport-ws": "^0.11.0"
},
"devDependencies": {
"eslint": "^8.35.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.5.0",
"nodemon": "^2.0.21",
"supertest": "^6.3.3"
},
"scripts": {
"test": "node --experimental-vm-modules --max-old-space-size=8192 --preserve-symlinks node_modules/.bin/jest",
"start": "node --max-old-space-size=8192 --preserve-symlinks --no-warnings src/server.js",
"start-dev": "nodemon --max-old-space-size=8192 --preserve-symlinks --trace-warnings src/server.js"
},
"nodemonConfig": {
"ext": "js,cjs,mjs,coffee,litcoffee,json,json5",
"watch": [
"src",
"config",
"package.json"
]
}
}