-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.93 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
{
"name": "whovotedthis",
"author": "quyenjd",
"license": "UNLICENSED",
"description": "Simple anonymous voting system out of the box",
"version": "1.0.0",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/quyenjd/whovotedthis.git"
},
"keywords": [
"anonymous",
"voting",
"poll"
],
"scripts": {
"start": "react-scripts start",
"start:nolint": "cross-env DISABLE_ESLINT_PLUGIN=true react-scripts start",
"build:clean": "del-cli \"build/*\"",
"build:start": "react-scripts build",
"build:qoom": "node qoom.js",
"build": "npm-run-all -s build:clean build:start build:qoom",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint src/ --ext .ts --ext .tsx",
"lint:fix": "eslint src/ --ext .ts --ext .tsx --fix --quiet",
"server": "node server.js"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"@types/jest": "^27.0.1",
"@types/lodash": "^4.14.172",
"@types/node": "^16.6.2",
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.9",
"@types/react-loading-overlay": "^1.0.0",
"@types/react-router-dom": "^5.1.8",
"axios": "^0.21.1",
"dependency-graph": "^0.11.0",
"lodash": "^4.17.21",
"mobx": "^6.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-loading-overlay": "^1.0.1",
"react-parallax": "^3.3.0",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"storage-manager-js": "^4.0.6",
"tslib": "^2.3.1",
"typescript": "^4.3.5"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"cross-env": "^7.0.3",
"del-cli": "^4.0.1",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.24.0",
"express": "^4.17.1",
"http-proxy-middleware": "^2.0.1",
"morgan": "^1.10.0",
"npm-run-all": "^4.1.5"
},
"homepage": "https://icyfiremen86.qoom.space/~/build",
"proxy": "http://localhost:5000"
}