-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
44 lines (44 loc) · 1.61 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
{
"name": "iniquity",
"description": "A re-imagining of the iconic BBS software.",
"private": true,
"scripts": {
"postinstall": "npx lerna bootstrap",
"build": "npx lerna run build && npx typedoc --theme default ./packages",
"start": "node_modules/.bin/concurrently --prefix \"[{name} {time}]\" -t \"HH:mm:ss\" -c \"bgGreen.bold,bgCyan.bold,bgMagenta.bold,bgBlue.bold,bgYellow.bold\" --kill-others-on-fail -n iniquity \"docker-compose up --build\"",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npx prettier --write \"packages/**/*.{ts,tsx}\" && npx eslint \"packages/**/*.{ts,tsx}\" --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/iniquitybbs/iniquity.git"
},
"author": "ispyhumanfly",
"license": "MIT",
"bugs": {
"url": "https://github.com/iniquitybbs/iniquity/issues"
},
"homepage": "https://github.com/iniquitybbs/iniquity#readme",
"dependencies": {
"typescript": "4.9.3"
},
"devDependencies": {
"@types/node": "^18.11.9",
"@types/terminal-kit": "^2.5.1",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"concurrently": "^7.6.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsdoc": "^46.8.2",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sort-class-members": "^1.19.0",
"lerna": "^6.0.3",
"prettier": "2.8.0",
"typedoc": "^0.23.21",
"typedoc-github-wiki-theme": "^1.0.1",
"typedoc-plugin-markdown": "^3.13.6"
}
}