-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·35 lines (35 loc) · 918 Bytes
/
package.json
File metadata and controls
executable file
·35 lines (35 loc) · 918 Bytes
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
{
"name": "sample-api",
"version": "0.0.0",
"description": "This is Sample API",
"type": "module",
"main": "dist/index.js",
"scripts": {
"dev": "tsx-dev --watch --clear ./src/index.ts",
"build": "rollup --bundleConfigAsCjs -c rollup.config.js",
"serve": "node ./dist/index.js"
},
"keywords": [
"api"
],
"author": "Andrew Caires",
"license": "MIT",
"dependencies": {
"@andrewcaires/api": "^5.0.0",
"@andrewcaires/express": "^2.0.4",
"@andrewcaires/fetch": "^1.2.0",
"@andrewcaires/node": "^1.2.10",
"@andrewcaires/sequelize": "^3.0.0",
"@andrewcaires/utils.js": "0.4.26",
"mariadb": "^3.4.5"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^25.0.10",
"eslint": "^9.39.2",
"rollup": "^4.56.0",
"tslib": "^2.8.1",
"typescript-eslint": "^8.53.1"
}
}