-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.29 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.29 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "outside",
"main": "dist/index.js",
"type": "commonjs",
"version": "0.0.1",
"description": "A simple weather app built on Apple's WeatherKit REST service.",
"scripts": {
"clean": "npx rimraf dist static/script/client.js",
"build:client": "npx rollup --config",
"build:server": "npx tsc -p server && npx copy-files-from-to",
"build": "npm run build:client && npm run build:server",
"build:digitalocean": "npm install --include=dev && npm run build && npm ci",
"dev": "npx nodemon",
"start:dev": "npm run build:client && npx ts-node server/index.ts",
"start": "npm run build && node ./dist/server/index.js",
"start:digitalocean": "node ./dist/server/index.js",
"test": "npx jest"
},
"author": "Peter Kevin Contreras",
"license": "GPL-3.0-only",
"dependencies": {
"@sequelize/core": "^7.0.0-alpha.42",
"@sequelize/postgres": "^7.0.0-alpha.43",
"body-parser": "^1.20.2",
"classnames": "^2.5.1",
"convert": "^5.6.1",
"date-fns": "^4.1.0",
"dotenv": "^16.4.5",
"express": "^5.0.1",
"express-session": "^1.18.1",
"fruit-company": "0.3.0",
"geo-tz": "^8.1.2",
"good-breathing": "0.0.2",
"http-terminator": "^3.2.0",
"i18next": "^24.0.0",
"i18next-fs-backend": "^2.6.0",
"i18next-http-middleware": "^3.7.0",
"jsonwebtoken": "^9.0.2",
"mailtrap": "^3.4.0",
"pg": "^8.13.1",
"pg-hstore": "^2.3.4",
"preact": "^10.25.0",
"preact-render-to-string": "^6.5.11",
"serene-front": "0.2.1",
"uuid": "^11.0.3",
"zod": "^3.24.1"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^12.1.1",
"@types/connect-pg-simple": "^7.0.3",
"@types/express": "^5.0.0",
"@types/express-session": "^1.18.0",
"@types/jsonwebtoken": "^9.0.7",
"copy-files-from-to": "^3.12.0",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"rimraf": "^6.0.1",
"rollup": "^4.27.4",
"ts-jest": "^29.2.5",
"ts-node-dev": "^2.0.0",
"tslib": "^2.8.1",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=20.0",
"npm": ">=10.5.0"
},
"copyFiles": [
{
"from": "locales/**",
"to": "dist/locales"
},
{
"from": "static/**",
"to": "dist/static"
}
]
}