-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.46 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
{
"name": "simple-ql",
"version": "0.13.37",
"description": "A node framework to manage your backend and your database with the least possible amount of code.",
"main": "src/index.js",
"scripts": {
"test": "node -r dotenv/config --trace-warnings ./test.js",
"release": "release-it"
},
"engines": {
"node": ">=10.12.0"
},
"engineStrict": true,
"repository": {
"type": "git",
"url": "git+https://github.com/Sharcoux/SimpleQL.git"
},
"keywords": [
"node",
"backend",
"server",
"database"
],
"author": "fbillioud",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Sharcoux/SimpleQL/issues"
},
"homepage": "https://github.com/Sharcoux/SimpleQL#readme",
"optionalDependencies": {
"greenlock-express": "^4.0.3",
"helmet": "^4.1.1",
"jsonwebtoken": "^8.5.1",
"mysql": "^2.18.1",
"stripe": "^8.121.0"
},
"peerDependencies": {
"express": "^4.17.1"
},
"devDependencies": {
"@sharcoux/stripe-cli": "^1.5.3",
"axios": "^0.21.0",
"dotenv": "^8.2.0",
"eslint": "^7.12.1",
"eslint-config-standard": "^15.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.2",
"express": "^4.17.1",
"release-it": "^15.10.3",
"simple-ql-testing": "^1.0.5"
},
"dependencies": {
"body-parser": "^1.19.0",
"express-rate-limit": "^5.1.3",
"uuid": "^8.3.1"
}
}