-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.52 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
56
{
"name": "frontend-server",
"description": "Simulate Discord's frontend server, for local or Spacebar",
"repository": "https://github.com/CordArchive/Frontend-Server",
"author": "CordArchive",
"private": true,
"version": "0.0.6",
"engines": {
"node": ">=13.2.0"
},
"main": "./dist/index.js",
"files": [
"dist/common/**/*",
"dist/index.*"
],
"scripts": {
"build": "rimraf dist && tsc && tsc-alias",
"version": "standard-version",
"lint": "eslint --ext ts,js --fix src",
"format": "prettier src/**/*.ts -w",
"build-live": "tsc -w && tsc-alias -w",
"start": "node dist/index.js"
},
"license": "GPL",
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/fs-extra": "^9.0.11",
"@types/mocha": "^8.2.2",
"@types/node": "^15.6.0",
"@types/node-forge": "^0.10.9",
"@types/prompt-sync": "^4.1.1",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"chai": "^4.3.4",
"conventional-changelog-cli": "^2.1.1",
"eslint": "^7.27.0",
"eslint-plugin-prettier": "^3.4.0",
"fs-extra": "^10.0.0",
"mocha": "^9.2.0",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.19",
"standard-version": "^9.3.2",
"tsc-alias": "^1.2.11",
"typescript": "next"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"node-forge": "^1.2.1",
"prompt-sync": "^4.1.6",
"yaml": "^1.10.2"
}
}