-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 2.01 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "tlock-pastebin",
"version": "1.0.0",
"description": "A social web-app for timelock-encrypting data, automatic decryption of it, and viewing ciphertexts/plaintexts others have uploaded.",
"main": "index.js",
"scripts": {
"build": "npm run build:prod",
"build:dev": "npm run build:client:dev && npm run build:server",
"build:prod": "npm run build:client:prod && npm run build:server",
"build:client:dev": "node ./build.dev.js",
"build:client:prod": "node ./build.prod.js",
"build:server": "esbuild ./src/server/index.ts --bundle --platform=node --outfile=./app.js",
"start:dev": "npm run build:dev && node ./app.js",
"start:prod": "npm run build:prod && node ./app.js",
"deploy": "git push heroku master"
},
"repository": {
"type": "git",
"url": "git+https://github.com/drand/pastelock.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/drand/pastelock/issues"
},
"homepage": "https://github.com/drand/pastelock#readme",
"dependencies": {
"@emotion/react": "^11.11.0",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto": "^5.0.0",
"@mui/material": "^5.13.1",
"@mui/x-date-pickers": "^6.5.0",
"buffer": "^6.0.3",
"cors": "^2.8.5",
"dayjs": "^1.11.7",
"express": "^4.18.2",
"pg": "^8.11.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.11.1",
"tlock-js": "0.9.0",
"typescript": "^5.0.4",
"yup": "^1.1.1"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@types/chai": "^4.3.1",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/node": "^18.16.7",
"@types/pg": "^8.6.6",
"@types/react-dom": "^18.2.5",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"chai": "^4.3.6",
"esbuild": "0.17.16",
"eslint": "^8.19.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}