This repository has been archived by the owner on Mar 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.64 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
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "api2",
"version": "0.0.0",
"private": true,
"license": "MIT",
"author": {
"email": "zach@saeon.ac.za",
"name": "Zach Smith",
"url": "http://saeon.ac.za"
},
"scripts": {
"prettier": "prettier --write \"**/*.@(js|mjs|graphql|json)\"",
"lint": "eslint \"./src/**/*.js\"",
"*******************************": "*********************************",
"start": "NODE_ENV=development npm-run-all clean copy:gqlschema copy:sql copy:csvs copy:env run:dev",
"run:dev": "nodemon --ignore './dist/' --exec \"npm-run-all prettier transpile server\" --ext js,mjs,graphql,json",
"start:prod": "NODE_ENV=production npm-run-all clean transpile copy:gqlschema copy:sql copy:csvs copy:env server",
"********************************": "*********************************",
"clean": "rimraf ./dist",
"copy:gqlschema": "copyfiles -u 1 ./src/schema.graphql dist/",
"copy:sql": "copyfiles -u 2 \"./src/db/sql/**/*\" dist/db/",
"copy:env": "copyfiles ./.env dist/",
"copy:csvs": "copyfiles -u 2 \"./src/db/csvs/**/*\" dist/db/",
"*********************************": "*********************************",
"transpile": "babel ./src --out-dir dist",
"server": "TZ=utc node ./dist/bin"
},
"husky": {
"hooks": {
"pre-commit": "npm-run-all -s prettier lint"
}
},
"dependencies": {
"@babel/runtime": "^7.8.4",
"@babel/runtime-corejs3": "^7.8.4",
"axios": "^0.19.2",
"compression": "^1.7.4",
"cookie-parser": "~1.4.4",
"core-js": "^3.6.4",
"cron": "^1.8.2",
"csv": "^5.3.1",
"csv-parse": "^4.8.6",
"dataloader": "^2.0.0",
"debug": "~4.1.1",
"dotenv": "^8.2.0",
"express": "~4.17.1",
"express-graphql": "^0.9.0",
"graphql": "^14.6.0",
"graphql-tag": "^2.10.3",
"graphql-tools": "^4.0.7",
"graphql-type-json": "^0.3.1",
"morgan": "~1.9.1",
"pg": "^7.18.2",
"ramda": "^0.27.0",
"sift": "^11.1.8"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/node": "^7.8.4",
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"babel-eslint": "^10.0.3",
"copyfiles": "^2.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.3",
"nodemon": "^2.0.2",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"rimraf": "^3.0.2"
}
}