-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.3 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.3 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
{
"name": "audibly-api",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "babel src --out-dir dist",
"postbuild": "copyfiles -u 1 src/dummyData/**/* src/data/**/* dist",
"start": "node dist/index.js",
"dev": "nodemon --watch src --exec \"npm run build && node dist/index.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Chrstjan/Audibly-API.git"
},
"author": "Chrstjan",
"license": "MIT",
"bugs": {
"url": "https://github.com/Chrstjan/Audibly-API/issues"
},
"homepage": "https://github.com/Chrstjan/Audibly-API#readme",
"dependencies": {
"@sequelize/postgres": "^7.0.0-alpha.46",
"bcrypt": "^6.0.0",
"cors": "^2.8.5",
"csv-parser": "^3.2.0",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"fs": "^0.0.1-security",
"jsonwebtoken": "^9.0.2",
"multer": "^2.0.1",
"path": "^0.12.7"
},
"devDependencies": {
"@babel/cli": "^7.27.2",
"@babel/core": "^7.27.4",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-class-static-block": "^7.21.0",
"@babel/plugin-proposal-decorators": "^7.27.1",
"@babel/preset-env": "^7.27.2",
"@babel/register": "^7.27.1",
"copyfiles": "^2.4.1",
"nodemon": "^3.1.10"
}
}