forked from Team-Silver-Sphere/SquadJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.1 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
{
"name": "SquadJS",
"version": "3.7.0",
"repository": "https://github.com/Team-Silver-Sphere/SquadJS.git",
"author": "Thomas Smyth <https://github.com/Thomas-Smyth>",
"license": "BSL-1.0",
"private": true,
"workspaces": [
"assets",
"core",
"squad-server"
],
"scripts": {
"prepare": "husky install",
"lint": "eslint --fix . && prettier --write \"./**/*.js\"",
"lint-staged": "lint-staged",
"build-config": "node squad-server/scripts/build-config-file.js",
"build-readme": "node squad-server/scripts/build-readme.js",
"build-all": "node squad-server/scripts/build-config-file.js && node squad-server/scripts/build-readme.js"
},
"type": "module",
"dependencies": {
"squad-server": "1.0.0"
},
"devDependencies": {
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"husky": "^5.1.3",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1"
}
}