-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 864 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 864 Bytes
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
{
"name": "ladder",
"version": "0.1.1",
"description": "ACM Ladder - An Exp Based ACM System",
"main": "index.js",
"scripts": {
"test": "mocha",
"start": "node --experimental-worker .",
"lint": "eslint --ext .js --fix ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/NankaiACM/ACM-Ladder.git"
},
"author": "SunriseFox",
"license": "MIT",
"bugs": {
"url": "https://github.com/NankaiACM/ACM-Ladder/issues"
},
"homepage": "https://github.com/NankaiACM/ACM-Ladder#readme",
"dependencies": {
"fastify": "^1.12.1",
"fastify-plugin": "^1.2.1",
"nanoid": "^1.3.1",
"pg": "^7.5.0",
"qs": "^6.5.2"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.7.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"mocha": "^5.2.0"
}
}