-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
139 lines (139 loc) · 4.64 KB
/
package.json
File metadata and controls
139 lines (139 loc) · 4.64 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "reporting-dashboard",
"version": "1.0.0",
"description": "",
"main": "server/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/wednesday-solutions/reporting-dashboard.git"
},
"author": "Wednesday Solutions",
"license": "MIT",
"bugs": {
"url": "https://github.com/wednesday-solutions/reporting-dashboard/issues"
},
"homepage": "https://github.com/wednesday-solutions/reporting-dashboard#readme",
"scripts": {
"start:local": "nodemon",
"local": "kill-port 9000 && export ENVIRONMENT=local && npm run build:local && npm run start",
"build:local": "export ENVIRONMENT_NAME=local && rm -rf dist && webpack --mode development --config webpack.dev.config.js",
"build:development": "export ENVIRONMENT_NAME=development && rm -rf dist && webpack --mode development --config webpack.dev.config.js",
"build:qa": "export ENVIRONMENT_NAME=qa && rm -rf dist && webpack --mode development --config webpack.dev.config.js",
"build:production": "export ENVIRONMENT_NAME=production && rm -rf dist && webpack --mode production --config webpack.prod.config.js",
"start": "node ./dist/main.js",
"clean": "rimraf dist",
"format": "prettier-standard './**/**/*.js'",
"lint": "npm run lint:js",
"lint:eslint": "eslint --ignore-path .gitignore --ignore-pattern server/bin",
"lint:eslint:fix": "eslint --ignore-path .gitignore --ignore-pattern server/bin --fix",
"lint:js": "npm run lint:eslint -- . ",
"lint:staged": "lint-staged",
"prettify": "prettier --write",
"precommit": "lint:staged",
"test": "jest --coverage --detectOpenHandles"
},
"dependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/plugin-syntax-optional-chaining": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"@babel/preset-flow": "^7.12.1",
"aws-sdk": "^2.780.0",
"babel-eslint": "^10.1.0",
"cls-rtracer": "^2.5.1",
"crypto": "^1.0.1",
"dotenv": "^8.2.0",
"eslint-loader": "^4.0.2",
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"fs": "^0.0.1-security",
"graphql": "^15.4.0",
"graphql-iso-date": "^3.6.1",
"graphql-relay": "^0.6.0",
"graphql-sequelize": "^9.4.0",
"html-webpack-plugin": "^4.5.0",
"http": "^0.0.1-security",
"loadash": "^1.0.0",
"lodash": "^4.17.15",
"moment": "^2.29.1",
"net": "^1.0.2",
"path": "^0.12.7",
"pg": "^8.4.2",
"pg-hstore": "^2.3.3",
"pg-native": "^3.0.0",
"pluralize": "^8.0.0",
"postgraphile": "^4.9.2",
"postgres": "^1.0.2",
"sequelize": "^6.3.5",
"sqlite3": "^5.0.0",
"stream": "^0.0.2",
"superagent": "^6.1.0",
"supertest": "^4.0.2",
"tedious": "^9.2.1",
"tls": "^0.0.1",
"webpack": "4.30.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "3.3.0",
"webpack-dev-middleware": "3.6.2",
"webpack-hot-middleware": "2.24.3",
"webpack-node-externals": "^1.7.2",
"winston": "^3.3.3",
"zlib": "^1.0.5"
},
"devDependencies": {
"@babel/node": "^7.6.3",
"@babel/plugin-proposal-throw-expressions": "^7.12.1",
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/polyfill": "^7.11.5",
"@babel/preset-es2015": "^7.0.0-beta.53",
"@babel/preset-react": "^7.6.3",
"@babel/preset-stage-0": "^7.8.3",
"@babel/preset-stage-2": "^7.8.3",
"@babel/register": "^7.6.2",
"@babel/runtime": "^7.6.3",
"babel-jest": "^26.3.0",
"babel-loader": "^8.1.0",
"babel-plugin-root-import": "^6.5.0",
"eslint": "5.16.0",
"eslint-config-prettier": "^4.1.0",
"eslint-config-prettier-standard": "^3.0.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"faker": "^4.1.0",
"jest": "^24.0.0",
"jest-environment-node": "^26.3.0",
"kill-port": "^1.6.0",
"lint-staged": "^9.4.2",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"pre-commit": "1.2.2",
"prettier": "1.17.0",
"prettier-config-standard": "^1.0.1",
"sequelize-cli": "^6.2.0",
"sequelize-mock": "^0.10.2",
"shelljs": "^0.8.3"
},
"precommit": "lint:staged",
"lint-staged": {
"*.js": [
"npm run lint:eslint:fix",
"git add --force"
],
"*.json": [
"prettier --write",
"git add --force"
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}