-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1013 Bytes
/
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
{
"name": "teradle",
"version": "0.0.1",
"description": "kahoot clone",
"source": "src/frontend/index.html",
"scripts": {
"format": "prettier --write src/**/*.ts",
"start": "npx gulp watchAndRunBackend",
"build": "npm run build:gulp",
"build:tsc": "tsc",
"build:gulp": "gulp",
"serve": "node dist/backend/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leon332157/teradle.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/leon332157/teradle/issues"
},
"homepage": "https://github.com/leon332157/teradle#readme",
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.8.6",
"browser-sync": "^3.0.3",
"gulp": "^5.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-typescript": "==5.0.1",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
},
"dependencies": {
"express": "^5.0",
"sequelize": "^6.37.5",
"sqlite3": "^5.1.7",
"cors": "^2.8.5"
}
}