-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
55 lines (55 loc) · 1.54 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"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": "webpack",
"dev": "nodemon",
"start": "node src/index.js",
"test": "eslint . && sort-package-json package.json --check && mdspell --en-us --ignore-numbers --report \"*.md\" && write-good --no-adverb README.md CONTRIBUTING.md"
},
"dependencies": {
"express": "^4.21.0",
"express-session": "^1.17.2",
"express-session-sequelize": "^2.3.0",
"got": "^12.0.1",
"mysql2": "^3.9.8",
"node-cron": "^3.0.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"sequelize": "^6.29.0",
"sequelize-cli": "^6.4.1"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-loader": "8.2.3",
"babel-preset-react-app": "10.0.1",
"css-loader": "6.6.0",
"eslint": "8.8.0",
"eslint-config-google": "0.14.0",
"eslint-plugin-react": "7.28.0",
"jsx": "0.9.89",
"markdown-spellcheck": "^1.3.1",
"nodemon": "2.0.20",
"sort-package-json": "1.54.0",
"style-loader": "3.3.1",
"webpack": "5.94.0",
"webpack-cli": "4.9.2",
"write-good": "1.0.8"
}
}