This repository was archived by the owner on Jan 9, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.21 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.21 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
{
"name": "Communitybanlist",
"version": "1.0.0",
"repository": "https://github.com/Communitybanlist/Communitybanlist.git",
"author": "Community Ban List <https://github.com/Communitybanlist>",
"license": "MIT",
"private": true,
"workspaces": [
"ban-importer",
"client",
"scbl-lib",
"web-server"
],
"scripts": {
"lint": "eslint --fix . && prettier --write \"./**/*.js\"",
"start-ban-importer": "node ban-importer/index.js",
"build-web-server": "cd client && npm run build",
"start-web-server": "cross-env NODE_ENV=production node web-server/index.js",
"dev-web-server": "concurrently \"nodemon --ignore './client/' web-server/index.js\" \"cd client && npm run start\""
},
"devDependencies": {
"concurrently": "^5.3.0",
"cross-env": "^7.0.2",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"nodemon": "^2.0.4",
"prettier": "^2.0.5"
},
"dependencies": {
"react-step-wizard": "^5.3.5"
}
}