-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.32 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.32 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
{
"name": "wald",
"version": "1.1.0",
"description": "Un framework web minimaliste basé sur fastify",
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
".git",
"node_modules"
],
"watch": [
"src"
],
"exec": "node -r tsconfig-paths/register -r ts-node/register ./src/index.ts",
"ext": "ts, js"
},
"scripts": {
"build": "tsc -p . && cp -r ./src/views ./dist/views && cp -r ./src/public ./dist/public",
"start": "node dist/index.js",
"dev": "nodemon src/index.ts"
},
"author": "JEANTET Joey",
"license": "MIT",
"dependencies": {
"@fastify/cookie": "^8.3.0",
"@fastify/session": "^10.0.0",
"@fastify/static": "^6.5.0",
"@fastify/view": "^7.1.0",
"chalk": "^5.0.1",
"commander": "^9.4.1",
"dotenv": "^8.2.0",
"ejs": "^3.1.8",
"fastify": "^4.8.1",
"pg": "^8.5.1",
"pug": "^3.0.2",
"sqlite3": "^5.0.3",
"tsconfig-paths": "^4.1.0"
},
"devDependencies": {
"@types/node": "^18.8.0",
"nodemon": "^2.0.7",
"ts-node": "^8.10.2",
"typescript": "^3.9.9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jojojojojota/wald.git"
},
"bugs": {
"url": "https://github.com/jojojojojota/wald/issues"
},
"homepage": "https://github.com/jojojojojota/wald#readme"
}