forked from mshick97/app-boilerplate-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.87 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
{
"name": "boilerplate_app",
"version": "1.0.0",
"description": "Boilerplate for a very basic React / Node.js (with Express) application",
"main": "./server/index.ts",
"scripts": {
"build": "./node_modules/.bin/tsc && webpack --config webpack.config.js",
"heroku-postbuild": "npm run build",
"start": "node dist/server/index.js",
"dev": "concurrently \"nodemon --exec ts-node server/index.ts\" \"webpack serve --config webpack.config.js --open --hot\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"proxy": "http://localhost:3000",
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"assemblyai": "^4.4.7",
"axios": "^1.1.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"file-loader": "^6.2.0",
"openai": "^4.51.0",
"path": "^0.12.7",
"playht": "^0.9.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"recordrtc": "^5.6.2",
"tailwind": "^4.0.0",
"typescript": "^4.9.5",
"use-debounce": "^10.0.1"
},
"engines": {
"node": "20.x",
"npm": "10.x"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@types/express": "^4.17.14",
"@types/json-schema": "^7.0.15",
"@types/node": "^20.14.2",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"@types/recordrtc": "^5.6.14",
"autoprefixer": "^10.4.19",
"babel-loader": "^8.2.5",
"concurrently": "^7.6.0",
"css-loader": "^7.1.2",
"html-webpack-plugin": "^5.5.0",
"nodemon": "^2.0.20",
"postcss": "^8.4.38",
"postcss-loader": "^8.1.1",
"style-loader": "^4.0.0",
"tailwindcss": "^3.4.4",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"webpack": "^5.73.0",
"webpack-cli": "^4.9.2",
"webpack-config": "^7.0.0",
"webpack-dev-server": "^4.9.2"
}
}