-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.19 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
{
"name": "eli-tech-client",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "export ENVIRONMENT=dev; NODE_OPTIONS=--max_old_space_size=8192 next dev -p 3002",
"build": "export ENVIRONMENT=prod; next build",
"start": "next start",
"init": "docker build -t client . && docker run --name CLIENT_CONTAINER -p 0.0.0.0:5000:3002 client"
},
"dependencies": {
"@svgr/webpack": "^5.5.0",
"next": "10.0.0",
"prop-types": "^15.7.2",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-icons": "4.2.0",
"react-loading": "^2.0.3",
"react-modal": "3.12.1",
"react-paginate": "7.1.0",
"react-select": "4.1.0",
"url-loader": "^4.1.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "4.21.0",
"@typescript-eslint/parser": "4.21.0",
"autoprefixer": "10.2.5",
"babel-eslint": "10.1.0",
"eslint": "7.24.0",
"eslint-config-react-app": "6.0.0",
"eslint-plugin-flowtype": "5.6.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.23.2",
"eslint-plugin-react-hooks": "4.2.0",
"postcss": "8.2.9",
"prettier": "2.2.1",
"tailwindcss": "2.1.1"
}
}