-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.42 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.42 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
{
"name": "deepseen-web",
"version": "1.0.0",
"description": "A web application for the Deepseen project",
"private": true,
"homepage": "https://github.com/peterdee/deepseen-web",
"author": {
"name": "Peter Dyumin",
"url": "https://github.com/peterdee"
},
"scripts": {
"build": "next build",
"dev": "next dev",
"lint": "eslint",
"start": "next start -p $PORT"
},
"engines": {
"node": "~14.15.5",
"npm": "~7.5.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peterdee/deepseen-web"
},
"keywords": [
"Deepseen",
"Bootstrap 5",
"NextJS",
"React",
"Typescript"
],
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"bootstrap": "^5.0.0-beta2",
"cookie": "^0.4.1",
"next": "10.0.5",
"react": "17.0.1",
"react-dom": "17.0.1",
"socket.io-client": "^3.1.1"
},
"devDependencies": {
"@types/cookie": "^0.4.0",
"@types/node": "^14.14.21",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"eslint": "^7.18.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"typescript": "^4.1.3"
}
}