-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 3.03 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
{
"name": "gh-jobs",
"version": "1.9.0",
"description": "A MERN application bootstrapped with create-mern-application.",
"main": "build/index.js",
"scripts": {
"browsersync": "browser-sync start --proxy \"http://localhost:8080\"",
"build": "npm run format && npm run lint && npm run build-client && npm run build-server",
"build-client": "rimraf dist && webpack",
"build-server": "rimraf build && tsc && copyfiles -f src/server/assets/**/* build/assets",
"cy:open": "cypress open",
"cy:run": "cypress run",
"debug": "env-cmd -e development node --inspect build/index.js",
"dev": "env-cmd -e development npm run start",
"format": "prettier --write src/**/*",
"lint": "eslint src",
"start": "node build/index.js",
"start:dev": "start-server-and-test dev http://localhost:3000 'webpack-dev-server --info=false'",
"test": "start-server-and-test test-server http://localhost:3000 cy:run",
"test-gui": "start-server-and-test test-server http://localhost:3000 cy:open",
"test-server": "env-cmd -e test npm run start"
},
"keywords": [],
"author": "",
"license": "",
"dependencies": {
"@sendgrid/mail": "^7.2.1",
"@sentry/react": "^5.20.1",
"bcryptjs": "^2.4.3",
"chalk": "^4.1.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"date-fns": "^2.14.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"lodash.throttle": "^4.1.1",
"mongoose": "^5.9.23",
"morgan": "^1.10.0",
"node-fetch": "^2.6.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-error-boundary": "^2.3.1",
"react-redux": "^7.2.0",
"react-router-dom": "^5.2.0",
"react-toastify": "^6.0.8",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"styled-components": "^5.1.1",
"validator": "^13.1.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/chalk": "^2.2.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.7",
"@types/jsonwebtoken": "^8.5.0",
"@types/lodash": "^4.14.157",
"@types/mongoose": "^5.7.31",
"@types/morgan": "^1.9.1",
"@types/node-fetch": "^2.5.7",
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.9",
"@types/react-router-dom": "^5.1.5",
"@types/styled-components": "^5.1.1",
"@types/validator": "^13.1.0",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"clean-webpack-plugin": "^3.0.0",
"copyfiles": "^2.3.0",
"css-loader": "^3.6.0",
"cypress": "5.0.0",
"env-cmd": "^10.1.0",
"eslint": "^7.4.0",
"eslint-plugin-react": "^7.20.3",
"html-webpack-plugin": "^4.3.0",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"source-map-loader": "^1.0.1",
"start-server-and-test": "^1.11.2",
"style-loader": "^1.2.1",
"ts-loader": "^8.0.0",
"typescript": "^3.9.6",
"url-loader": "^4.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}