-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.77 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
{
"name": "auto-bgm-generation-web",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "nodemon src/main.ts",
"build:clean": "rimraf .next",
"build:ui": "npx next build",
"build:server": "npx tsc --project tsconfig.server.json && npx babel .next/production-server -d .next/production-server --extensions \".js\"",
"build": "npm run build:clean && npm run build:ui && npm run build:server",
"start": "cross-env NODE_ENV=production node .next/production-server/main.js"
},
"dependencies": {
"@bumaga/tabs": "^0.2.0",
"@nestjs/common": "^6.11.11",
"@nestjs/core": "^6.5.3",
"@nestjs/platform-express": "^6.5.3",
"@types/react-tabs": "^2.3.2",
"axios": "^0.21.1",
"bootstrap": "^4.6.0",
"cross-env": "^6.0.3",
"http-proxy-middleware": "^1.0.6",
"mysql": "^2.18.1",
"nest-next": "^9.3.0",
"next": "^10.0.5",
"next-images": "^1.6.2",
"react": "17",
"react-bootstrap": "^1.4.3",
"react-dom": "17",
"react-dropzone-uploader": "^2.11.0",
"react-h5-audio-player": "^3.5.0",
"react-player": "^2.8.1",
"react-tabs": "^3.1.2",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.2",
"shelljs": "^0.8.4"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@nestjs/typeorm": "^7.1.5",
"@types/multer": "^1.4.5",
"@types/node": "^12.7.1",
"@types/react": "^16.9.1",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"rimraf": "^3.0.0",
"ts-node": "^8.3.0",
"typeorm": "^0.2.30",
"typescript": "^3.5.3"
}
}