-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.76 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "mateo-node-graphql",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon --exec babel-node src/server.js",
"start": "npm-run-all build serve",
"build": "babel src --out-dir dist --copy-files",
"serve": "node dist/server.js",
"test": "mocha tests/*.test.js",
"prisma:introspect": "prisma introspect",
"prisma:generate": "prisma generate"
},
"author": "",
"license": "ISC",
"dependencies": {
"@apollo/server": "^4.10.4",
"@as-integrations/aws-lambda": "^3.1.0",
"@babel/cli": "^7.22.9",
"@prisma/client": "^5.0.0",
"bcrypt": "^5.1.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"chai": "^4.3.7",
"cloudinary": "^1.39.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^6.8.0",
"faker": "^5.5.3",
"graphql": "^16.9.0",
"graphql-tag": "^2.12.6",
"graphql-upload": "^16.0.2",
"jest": "^29.6.1",
"jsonwebtoken": "^9.0.1",
"lowdb": "^6.0.1",
"mkdirp": "^3.0.1",
"mocha": "^10.2.0",
"mysql2": "^3.10.3",
"shortid": "^2.2.15",
"supertest": "^6.3.3"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/node": "^7.22.6",
"@babel/preset-env": "^7.22.9",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.45.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
"prisma": "^5.0.0",
"webpack": "^5.88.2",
"webpack-node-externals": "^3.0.0"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
}
}