-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.69 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.69 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "captains-log",
"version": "1.0.0",
"description": "A Star Trek-inspired application for recording, transcribing, and managing audio logs",
"license": "ISC",
"author": "",
"type": "commonjs",
"main": "app.js",
"scripts": {
"start": "node server.js",
"dev": "webpack serve --mode development",
"build": "webpack --mode production",
"build:dev": "webpack --mode development",
"test": "echo \"Error: no test specified\" && exit 1",
"setup-db": "node scripts/setup-db.js"
},
"keywords": [
"star-trek",
"audio",
"logs",
"pwa",
"lcars"
],
"dependencies": {
"bcrypt": "^5.1.1",
"better-sqlite3": "^11.9.1",
"core-js": "3",
"dotenv": "^16.4.5",
"dotenv-webpack": "^8.1.0",
"express": "^4.19.2",
"form-data": "^4.0.2",
"knex": "^3.1.0",
"multer": "^1.4.5-lts.1",
"openai": "^4.87.4",
"pg": "^8.11.4",
"regenerator-runtime": "^0.14.1",
"sharp": "^0.33.5",
"svgexport": "^0.4.2",
"yarn": "^1.22.22"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"assert": "^2.1.0",
"babel-loader": "^9.1.3",
"buffer": "^6.0.3",
"copy-webpack-plugin": "^12.0.2",
"crypto-browserify": "^3.12.1",
"css-loader": "^7.1.2",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.8.1",
"node-polyfill-webpack-plugin": "^4.1.0",
"path-browserify": "^1.0.1",
"sass": "^1.86.0",
"sass-loader": "^16.0.5",
"stream-browserify": "^3.0.0",
"style-loader": "^4.0.0",
"util": "^0.12.5",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.2",
"workbox-webpack-plugin": "^7.0.0"
}
}