-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 752 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 752 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "itsnotes",
"version": "1.0.0",
"description": "itsnotes — a personal notes app built with Node.js and PostgreSQL",
"license": "MIT",
"main": "index.js",
"scripts": {
"server": "cd server && npm start",
"client": "cd client && npm start",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"install": "cd server && npm install && cd ../client && npm install",
"test": "cd server && npm test && cd ../client && npm test",
"android:build": "cd client && npm run build && npx cap sync",
"android:open": "cd client && npx cap open android"
},
"dependencies": {
"concurrently": "^8.2.0",
"html-to-text": "^9.0.5",
"react-textarea-autosize": "^8.5.7",
"uuid": "^11.1.0"
}
}