-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 745 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 745 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
{
"name": "harmony",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"run:client": "cd client && pnpm dev",
"run:server": "node server.js",
"compile:nova": "make compile",
"dev": "concurrently \"pnpm run:server\" \"pnpm compile:nova && pnpm run:client\"",
"build": "make compile && cd client && pnpm build",
"format": "prettier --config ./.prettierrc.js --write --loglevel silent '**/*.{js,ts,tsx,css}'"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^7.4.0",
"prettier": "^2.7.1"
},
"dependencies": {
"cors-anywhere": "^0.4.4",
"express": "^4.18.1"
}
}