-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
62 lines (62 loc) · 2.46 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
{
"name": "warcy-statshammer",
"private": true,
"version": "0.5.0",
"engines": {
"node": "16.20.2",
"yarn": "1.22.21"
},
"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.21.4",
"@types/body-parser": "^1.17.1",
"@types/compression": "^1.0.1",
"@types/express": "^4.17.2",
"@types/jest": "^26.0.10",
"@types/js-combinatorics": "^0.5.31",
"@typescript-eslint/eslint-plugin": "~3.6.1",
"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.3.0",
"core-js": "^3.6.4",
"eslint": "^7.7.0",
"eslint-config-airbnb-typescript": "^9.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"express": "^4.17.1",
"jest": "^26.4.2",
"js-combinatorics": "^0.6.1",
"lerna": "^3.20.2",
"prettier": "^2.1.1",
"regenerator-runtime": "^0.13.3",
"typescript": "~3.9.2"
}
}