-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 934 Bytes
/
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
{
"name": "better-wordle",
"version": "1.0.0",
"description": "A cheat-proof wordle",
"main": "server.mjs",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node --env-file=.env --experimental-modules server.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UP2013168/Better-Wordle.git"
},
"author": "Sol Hollingsworth",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/UP2013168/Better-Wordle/issues"
},
"homepage": "https://github.com/UP2013168/Better-Wordle#readme",
"dependencies": {
"body-parser": "^1.20.0",
"express": "^4.18.1",
"fs": "^0.0.1-security",
"mongodb": "^6.7.0"
},
"devDependencies": {
"eslint": "^8.15.0",
"eslint-config-portsoc": "^1.0.0"
},
"eslintConfig": {
"extends": "portsoc",
"root": true,
"env": {
"browser": true
}
}
}