This repository was archived by the owner on Dec 7, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.88 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
{
"name": "gql_boilerplate",
"version": "2.5.1",
"repository": "[email protected]:matt-riley/gql_boilerplate.git",
"author": "Matt Riley <[email protected]> (https://mattriley.me)",
"license": "MIT",
"scripts": {
"build": "NODE_ENV=production babel src -d build --copy-files --no-comments && npm run update-schema",
"start:dev": "nodemon --watch src -e js,graphql --exec babel-node -- src/server/index.js",
"prestart": "npm run build",
"start": "node build/server/index.js",
"update-schema": "NODE_ENV=local babel-node ./scripts/build_schema.js",
"test": "npm run lint",
"test:only": "jest",
"lint": "eslint src",
"lint:fix": "eslint \"src/**/*.js\" --fix",
"release": "standard-version",
"commit": "npx git-cz",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"dependencies": {
"apollo-datasource-rest": "3.7.0",
"apollo-server-express": "3.11.1",
"express": "4.18.2",
"graphql": "16.6.0",
"winston": "3.8.2",
"snyk": "^1.1064.0"
},
"devDependencies": {
"@babel/cli": "7.19.3",
"@babel/core": "7.20.5",
"@babel/node": "7.20.5",
"@babel/preset-env": "7.20.2",
"babel-plugin-transform-builtin-extend": "1.1.2",
"babel-plugin-transform-import-to-read-file-sync": "0.2.2",
"babel-preset-minify": "0.5.2",
"commitizen": "4.2.6",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.29.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-mocha": "10.1.0",
"jest": "29.3.1",
"nodemon": "2.0.20",
"npm-run-all": "4.1.5",
"standard-version": "9.5.0"
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"lcov"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"standard-version": {
"skip": {
"tag": true
}
},
"snyk": true
}