-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 894 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 894 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
{
"name": "plan",
"version": "0.0.0",
"description": "Scheduling and note taking app",
"main": "src/index.ts",
"scripts": {
"build": "tsc -p tsconfig-server.json && tsc -p tsconfig-client.json",
"start": "concurrently \"tsc -w -p tsconfig-server.json\" \"tsc -w -p tsconfig-client.json\" \"mkdir -p client-dist && mkdir -p server-dist && nodemon --watch client-dist --watch server-dist server-dist\""
},
"keywords": [
"schedule",
"calendar",
"notes"
],
"author": "Nate Ferrero",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^20.5.7",
"@types/sqlite3": "^3.1.8",
"concurrently": "^8.2.1",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"dependencies": {
"dotenv": "^16.3.1",
"express": "^4.18.2",
"sqlite": "^5.0.1",
"sqlite3": "^5.1.6"
}
}