-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.73 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.73 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
{
"name": "worlddriven",
"version": "1.0.0",
"description": "World driven introduces a contribution based weighted voting system",
"homepage": "https://github.com/TooAngel/worlddriven#readme",
"bugs": {
"url": "https://github.com/TooAngel/worlddriven/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TooAngel/worlddriven.git"
},
"license": "AGPL",
"author": "Tobias Wilken",
"type": "module",
"main": "src/index.js",
"directories": {
"test": "tests"
},
"scripts": {
"build": "vite build",
"check": "prettier --check . && npm run lint",
"dev": "nodemon",
"fix": "prettier --write . && eslint . --fix",
"format": "prettier --write .",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"lint:frontend": "eslint static/js --config frontend.eslint.config.cjs --report-unused-disable-directives --max-warnings 0",
"start": "node src/index.js",
"test": "npm run check && sort-package-json package.json --check && npm run test:unit",
"test:unit": "node --test tests/*.test.js"
},
"dependencies": {
"@octokit/auth-app": "8.2.0",
"@octokit/rest": "22.0.1",
"@octokit/webhooks": "14.2.0",
"connect-mongo": "^6.0.0",
"express": "5.2.1",
"express-session": "1.19.0",
"mongodb": "^7.1.0",
"node-cron": "4.2.1",
"react": "19.2.4",
"react-dom": "19.2.4",
"vite": "^7.3.2"
},
"devDependencies": {
"@eslint/js": "9.39.2",
"@vitejs/plugin-react": "5.1.4",
"eslint": "9.39.2",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"globals": "^17.3.0",
"nodemon": "3.1.11",
"prettier": "^3.8.1",
"sinon": "21.0.1",
"sort-package-json": "3.6.1"
}
}