-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.07 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
{
"name": "screaming-into-a-void",
"version": "0.0.1",
"description": "Come scream with me!",
"scripts": {
"build": "node esbuild.config.mjs",
"build:watch": "node eswatch.config.mjs",
"watch": "nodemon ./bin/www",
"start": "node ./bin/www",
"dev:watch": "concurrently \"npm:build:watch\" \"npm:watch\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/exoup/screaming-into-a-void.git"
},
"author": "JosephY",
"license": "ISC",
"bugs": {
"url": "https://github.com/exoup/screaming-into-a-void/issues"
},
"homepage": "https://github.com/exoup/screaming-into-a-void#readme",
"dependencies": {
"dotenv": "^16.3.1",
"express": "^4.18.2",
"normalize.css": "^8.0.1",
"preact": "^10.17.1",
"preact-router": "^4.1.2",
"react": "npm:@preact/compat@^17.1.2",
"react-dom": "npm:@preact/compat@^17.1.2",
"redis": "^4.6.8"
},
"devDependencies": {
"chalk": "^5.3.0",
"concurrently": "^8.2.1",
"esbuild": "^0.19.3",
"nodemon": "^3.0.1"
},
"engines": {
"node": "^18"
}
}