-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
63 lines (63 loc) · 1.82 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
{
"name": "nextjs-socketio-chat-example",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run build:ts",
"build:all": "npm run build:ts && npm run build:next",
"build:ts": "tsc -p tsconfig-server.json",
"build:next": "next build",
"clean": "npm run clean:ts",
"clean:all": "npm run clean:ts && npm run clean:next",
"clean:ts": "del-cli ./server/**/*.js ./shared/**/*.js",
"clean:next": "del-cli ./.next",
"start": "node index.js",
"dev": "cross-env NODE_ENV=development APP_ENV=release nodemon",
"heroku-postbuild": "npm run build:all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arch-inc/nextjs-socketio-chat-example.git"
},
"keywords": [
"next",
"nextjs",
"next.js",
"socketio",
"socket.io",
"chat"
],
"author": "Jun Kato <[email protected]> (https://junkato.jp)",
"license": "MIT",
"bugs": {
"url": "https://github.com/arch-inc/nextjs-socketio-chat-example/issues"
},
"homepage": "https://github.com/arch-inc/nextjs-socketio-chat-example#readme",
"description": "A simple chat using Socket.io and Next.js, written in pure TypeScript",
"engines": {
"node": "12.x"
},
"devDependencies": {
"@types/react": "^16.9.44",
"@types/react-dom": "^16.9.8",
"@types/socket.io": "^2.1.10",
"@types/socket.io-client": "^1.4.33",
"@types/ua-parser-js": "^0.7.33",
"@types/uuid": "^8.0.0",
"cross-env": "^7.0.2",
"del-cli": "^3.0.1",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"typescript": "^3.9.7"
},
"dependencies": {
"next": "^9.5.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"ua-parser-js": "^0.7.21",
"uuid": "^8.3.0"
}
}