-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.9 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
{
"name": "lukestream",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "nodemon --watch 'server/**/*.ts' --exec 'ts-node --project tsconfig.server.json' server/index.ts",
"start": "NODE_ENV=production node dist/server/index.js",
"all": "npm run clean && npm run lint && npm run build",
"clean:client": "rimraf ./.next",
"clean:server": "rimraf ./dist",
"clean": "npm run clean:client && npm run clean:server",
"lint:prettier": "prettier --loglevel silent .",
"lint:eslint": "eslint .",
"lint:stylelint": "npx stylelint \"./**/*.@(ts|tsx|js|jsx)\"",
"lint": "npm run lint:prettier && npm run lint:eslint && npm run lint:stylelint",
"build:client": "next build",
"build:server": "tsc --project tsconfig.server.json",
"build": "npm run build:client && npm run build:server"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-brands-svg-icons": "^5.14.0",
"@fortawesome/free-regular-svg-icons": "^5.14.0",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@fortawesome/pro-duotone-svg-icons": "^5.14.0",
"@fortawesome/pro-light-svg-icons": "^5.14.0",
"@fortawesome/pro-regular-svg-icons": "^5.14.0",
"@fortawesome/pro-solid-svg-icons": "^5.14.0",
"@fortawesome/react-fontawesome": "^0.1.11",
"axios": "^0.19.2",
"color": "^3.1.2",
"express": "^4.17.1",
"express-http-proxy": "^1.6.2",
"next": "9.5.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-grid-layout": "^1.0.0",
"simple-peer": "9.6.2",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"styled-components": "^5.1.1",
"typescript": "^3.9.7"
},
"devDependencies": {
"@types/color": "^3.0.1",
"@types/express": "^4.17.7",
"@types/express-http-proxy": "^1.6.1",
"@types/node": "^14.0.27",
"@types/react": "^16.9.44",
"@types/react-dom": "^16.9.8",
"@types/react-grid-layout": "^0.17.2",
"@types/simple-peer": "^9.6.0",
"@types/socket.io": "^2.1.10",
"@types/socket.io-client": "^1.4.33",
"@types/styled-components": "^5.1.2",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"babel-plugin-styled-components": "^1.11.1",
"eslint": "^7.7.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.0.8",
"husky": "^4.2.5",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"stylelint": "^13.6.1",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0",
"ts-node": "^8.10.2"
},
"husky": {
"hooks": {
"pre-commit": "npm i && npm run all"
}
}
}