-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.22 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
{
"name": "fireworks",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "yarn build:client && yarn build:server",
"build:client": "next build",
"build:server": "tsc --project tsconfig.server.json",
"dev": "nodemon src/server/index.ts",
"export": "next export",
"start": "NODE_ENV=production node .next-server/server/index.js"
},
"dependencies": {
"@fullhuman/postcss-purgecss": "^2.2.0",
"autoprefixer": "^9.7.6",
"debug": "^4.1.1",
"express": "^4.17.1",
"express-session": "^1.17.1",
"express-ws": "^4.0.0",
"next": "^9.4.0",
"tailwindcss": "^1.4.6",
"ws": "^7.3.0"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/express": "^4.17.6",
"@types/express-session": "^1.17.0",
"@types/express-ws": "^3.0.0",
"@types/next": "^9.0.0",
"@types/node": "^13.13.5",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/ws": "^7.2.4",
"nodemon": "^2.0.3",
"pixi-filters": "^3.1.1",
"pixi-particles": "^4.2.1",
"pixi.js": "^5.2.4",
"random-js": "^2.1.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"ts-node": "^8.10.1",
"typescript": "^3.8.3"
}
}