-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
101 lines (101 loc) · 3.15 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "gitadora-skill-viewer",
"description": "",
"engines": {
"node": "16.15.0"
},
"main": "app.js",
"scripts": {
"heroku-postbuild": "npm run build:prod && npm run build:scripts:prod",
"build:client": "webpack --watch --mode=development --config webpack.server.config.js",
"build:server": "webpack-dev-server --config webpack.client.config.js",
"build": "npm-run-all --parallel build:client build:server",
"build:prod": "webpack -p --config webpack.server.config.js && webpack -p --config webpack.client.config.js",
"build:scripts": "webpack --config webpack.scripts.config.js --watch --mode=development",
"build:scripts:prod": "webpack --config webpack.scripts.config.js",
"lint": "eslint . --ext .js --ext .jsx",
"format": "prettier --write src//**/*.{js,jsx}",
"format:check": "prettier --check src//**/*.{js,jsx}"
},
"author": "",
"license": "ISC",
"dependencies": {
"@apollo/react-hooks": "^3.0.1",
"@apollo/react-ssr": "^3.0.1",
"@material-ui/core": "^4.3.2",
"@material-ui/icons": "^4.2.1",
"@material-ui/lab": "^4.0.0-alpha.61",
"@material-ui/styles": "^4.3.0",
"@sentry/react": "^6.8.0",
"@sentry/tracing": "^6.8.0",
"apollo-cache-inmemory": "^1.6.3",
"apollo-client": "^2.6.4",
"apollo-link-http": "^1.5.15",
"apollo-server-express": "^2.14.2",
"body-parser": "^1.15.2",
"compression": "^1.7.1",
"compression-webpack-plugin": "^1.0.1",
"cookie-parser": "^1.4.3",
"cron": "^1.5.0",
"dotenv": "^16.4.3",
"downshift": "^3.2.12",
"es6-promise": "^4.2.5",
"express": "^4.17.3",
"flat": "^5.0.1",
"graphql": "^14.4.2",
"graphql-tag": "^2.10.1",
"isomorphic-fetch": "^2.2.1",
"jquery": "^3.5.0",
"node-fetch": "^2.6.7",
"pg": "^8.8.0",
"pug": "^3.0.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-helmet": "^5.2.1",
"react-intl": "^3.1.12",
"react-lazyload": "^2.6.2",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"react-table": "6.8.6",
"styled-components": "^4.3.2",
"url-search-params": "^1.1.0",
"webpack-dev-server": "^3.11.3",
"xml-js": "^1.6.8",
"xmldom": "^0.6.0"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.4",
"css-loader": "^6.7.2",
"eslint": "^5.6.0",
"eslint-plugin-react": "^7.34.0",
"kill-port": "^1.3.2",
"node-sass": "^9.0.0",
"nodemon": "^2.0.20",
"npm-run-all": "^4.1.5",
"prettier": "1.19.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.0",
"webpack": "^4.47.0",
"webpack-cli": "^3.1.2",
"webpack-manifest-plugin": "^2.0.4",
"webpack-node-externals": "^3.0.0"
},
"nodemonConfig": {
"ignore": [
"src/react/*"
],
"events": {
"restart": "./node_modules/.bin/kill-port 5000",
"crash": "./node_modules/.bin/kill-port 5000"
}
}
}