-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
69 lines (69 loc) · 2.73 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
{
"name": "statshammer-express",
"private": true,
"version": "2.1.5",
"engines": {
"node": "12.18.3",
"yarn": "1.22.4"
},
"scripts": {
"setup": "yarn install && cd client && yarn install",
"client": "cd client && yarn start",
"server": "nodemon --exec babel-node server.ts --extensions \".ts\"",
"dev": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\"",
"start": "babel-node server.ts --extensions \".ts,.tsx\"",
"heroku-postbuild": "cd client && yarn install && yarn install --only=dev --no-shrinkwrap && yarn run build",
"test": "jest api && cd client && yarn test --watchAll=false",
"bumpversion": "lerna version --no-git-tag-version --no-push",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"clean-setup": "rm -rf node_modules && rm -rf client/node_modules && yarn setup"
},
"dependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/node": "^7.7.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.7.4",
"@babel/plugin-proposal-optional-chaining": "^7.7.5",
"@babel/plugin-syntax-optional-chaining": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"@babel/preset-typescript": "^7.7.7",
"@babel/register": "^7.7.4",
"@sentry/node": "5.15.5",
"@types/body-parser": "^1.17.1",
"@types/compression": "^1.0.1",
"@types/express": "^4.17.2",
"@types/format-unicorn": "^1.1.2",
"@types/jest": "^25.1.2",
"@types/mocha": "^7.0.2",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"babel-loader": "^8.0.6",
"babel-plugin-import": "^1.13.0",
"babel-plugin-styled-components": "^1.10.6",
"body-parser": "^1.18.3",
"compression": "^1.7.4",
"concurrently": "^5.2.0",
"core-js": "^3.5.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-airbnb-typescript": "^7.2.1",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.2",
"eslint-plugin-simple-import-sort": "^5.0.3",
"esm": "^3.2.25",
"express": "^4.16.4",
"husky": "^4.0.1",
"jest": "^26.0.1",
"lerna": "^3.22.1",
"mocha": "^7.1.2",
"prettier": "^2.0.5",
"regenerator-runtime": "^0.13.3",
"typescript": "~3.9.2"
}
}