-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.51 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
102
103
104
105
106
107
108
109
{
"name": "eis-registrant",
"version": "1.0.0",
"private": true,
"scripts": {
"start-server": "cross-env NODE_ENV=development nodemon --exec babel-node server/index.js --watch server/*",
"serve": "cross-env NODE_ENV=production nodemon --exec babel-node server/index.js --watch server/*",
"serve:test": "cross-env NODE_ENV=test nodemon --exec babel-node server/index.js",
"start-front": "react-scripts start",
"build": "node ./buildScript",
"lint": "npx eslint --fix --ext jsx,js src server",
"test": "npm run lint && react-scripts test",
"test:e2e": "concurrently \"npm run serve:test\" \"cypress run\" --kill-others --success first",
"start": "concurrently \"npm run start-server\" \"npm run start-front\" --kill-others --kill-others-on-fail",
"deploy": "npm run test && npm run build && npm run test:e2e && npm run serve"
},
"dependencies": {
"@babel/polyfill": "^7.10.1",
"@babel/runtime": "^7.10.1",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"axios": "^0.21.2",
"body-parser": "^1.19.0",
"capitalize": "^2.0.3",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cookie-session": "^1.4.0",
"dompurify": "^2.2.9",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-winston": "^4.0.5",
"grant-express": "^4.7.0",
"helmet": "^3.22.0",
"jsonwebtoken": "^9.0.0",
"jwk-to-pem": "^2.0.3",
"moment": "^2.26.0",
"qs": "^6.9.4",
"react-ga": "^3.3.0",
"vanilla-cookieconsent": "^2.9.2",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.5.0"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/node": "^7.10.5",
"@babel/preset-env": "^7.11.5",
"autoprefixer": "^10.2.5",
"canvg": "^3.0.7",
"cheerio": "^1.0.0-rc.3",
"classnames": "^2.2.6",
"concurrently": "^5.3.0",
"copyfiles": "^2.3.0",
"cross-env": "^5.2.1",
"cypress": "^7.4.0",
"eis-registrant-theme": "git+https://github.com/internetee/registrant_center_theme.git",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.4",
"eslint": "^7.11.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.4",
"eslint-plugin-react-hooks": "^4.0.0",
"flatpickr": "^4.6.3",
"lint-staged": "^10.3.0",
"nodemon": "^2.0.20",
"pdfmake": "^0.1.65",
"popper.js": "^1.16.1",
"prettier": "^2.1.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-cookie": "3.1.2",
"react-csv": "^2.0.3",
"react-dom": "^16.13.1",
"react-flatpickr": "^3.10.0",
"react-helmet": "^5.2.1",
"react-intl": "^5.3.2",
"react-masonry-component": "^6.2.1",
"react-redux": "^7.2.0",
"react-responsive": "^6.1.2",
"react-router-dom": "5.2.0",
"react-scripts": "^4.0.3",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-mock-store": "^1.5.4",
"redux-state-sync": "^3.1.1",
"redux-thunk": "2.3.0",
"sass": "^1.55.0",
"semantic-ui-react": "0.82.5",
"serve-favicon": "^2.5.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"proxy": "https://localhost:1234"
}