-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.17 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.17 KB
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
{
"name": "cse-hackathon-2021",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "src/frontend/main.tsx",
"scripts": {
"back:watch": "ts-node-dev --project src/backend/tsconfig.json --watch src/common,src/backend -r tsconfig-paths/register src/backend/main.ts",
"front:watch": "rollup -c -w",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-commonjs": "^19.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.2",
"@rollup/plugin-replace": "^3.0.0",
"@rollup/plugin-typescript": "^8.2.3",
"@types/express": "^4.17.13",
"@types/express-ws": "^3.0.1",
"@types/lodash": "^4.14.171",
"@types/react": "^17.0.14",
"@types/react-dom": "^17.0.9",
"@types/react-router": "^5.1.16",
"@types/react-router-dom": "^5.1.8",
"@types/sqlite3": "^3.1.7",
"@types/ws": "^7.4.6",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"axios": "^0.21.1",
"eslint": "^7.30.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"express": "^4.17.1",
"express-ws": "^5.0.2",
"fp-ts": "^2.10.5",
"immutable": "^4.0.0-rc.14",
"immutable-sorted": "^0.2.11",
"lodash": "^4.17.21",
"luxon": "^2.0.1",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-bootstrap": "^1.6.1",
"react-dom": "^17.0.2",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-use-websocket": "^2.7.1",
"rollup": "^2.53.2",
"rollup-plugin-dev": "^1.1.3",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"sqlite": "^4.0.23",
"sqlite3": "^5.0.2",
"ts-node": "^10.1.0",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.10.1",
"tslib": "^2.3.0",
"typescript": "^4.3.5"
}
}