-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.12 KB
/
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": "capsulen",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"postinstall": "npx elm-tooling install",
"dev": "run-pty % npm run watch -w server % npm run watch:elm -w client % npm run watch:ts -w client",
"db:drop": "npm run db:drop -w server",
"db:up": "npm run db:up -w server",
"db:refresh": "npm run db:refresh -w server",
"gen:translations": "npm run gen:translations -w client",
"gen:invite": "npm run gen:invite -w server",
"gen:pasetoKey": "npm run gen:pasetoKey -w server",
"build": "npm run build -w client",
"start": "npm run start -w server"
},
"keywords": [],
"author": "",
"license": "ISC",
"workspaces": [
"server",
"client"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"elm-tooling": "^1.14.1",
"esbuild": "^0.19.2",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.3",
"run-pty": "^4.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"dotenv": "^16.3.1"
}
}