-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 990 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 990 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": "etmos",
"version": "2.0.0",
"description": "Visual graph-based representation of etymological connections between words across languages",
"main": "server/dist/index.js",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "concurrently \"npm run server:dev\" \"npm run client:dev\"",
"client:dev": "cd client && npm run dev",
"client:build": "cd client && npm run build",
"server:dev": "cd server && npm run dev",
"server:build": "cd server && npm run build",
"server:start": "cd server && npm start",
"server:start:prod": "cd server && npm run start:prod",
"install:all": "npm install && cd client && npm install && cd ../server && npm install"
},
"keywords": [
"etymology",
"linguistics",
"graph",
"visualization",
"languages"
],
"author": "",
"license": "MIT",
"devDependencies": {
"concurrently": "^8.2.2"
},
"dependencies": {
"pino": "^10.1.0",
"pino-pretty": "^13.1.2"
}
}