-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.98 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 3.98 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
{
"name": "reporting-dashboard",
"version": "1.0.0",
"description": "",
"main": "server/bin/www",
"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 && ENVIRONMENT=local npm-run-all build start",
"start": "node ./dist-server/bin/www",
"dev": "ENVIRONMENT=development npm-run-all build start",
"prod": "ENVIRONMENT=production && NODE_ENV=production npm-run-all build start",
"transpile": "babel ./server --out-dir dist-server",
"build": "npm-run-all clean transpile",
"clean": "rimraf dist-server",
"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",
"postinstall": "link-module-alias",
"preinstall": "command -v link-module-alias && link-module-alias clean || true",
"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-eslint": "^10.1.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"graphql": "14.6",
"graphql-iso-date": "^3.6.1",
"graphql-relay": "^0.6.0",
"join-monster": "^2.1.1",
"loadash": "^1.0.0",
"lodash": "^4.17.15",
"moment": "^2.26.0",
"pg": "^8.2.1",
"pg-escape": "^0.2.0",
"pg-hstore": "^2.3.3",
"pluralize": "^8.0.0",
"postgres": "^1.0.2",
"sequelize": "^5.21.10",
"superagent": "^6.1.0",
"supertest": "^4.0.2"
},
"devDependencies": {
"@babel/node": "^7.6.3",
"@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.0.6",
"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",
"link-module-alias": "^1.2.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": "^5.5.1",
"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"
}
},
"_moduleAliases": {
"root": ".",
"server": "dist-server",
"utils": "dist-server/utils",
"database": "dist-server/database",
"gql": "dist-server/gql",
"config": "config"
}
}