-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.03 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
{
"name": "unofficial-apis",
"version": "1.0.0",
"description": "unofficial UCL APIs",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "babel-node src/app.js",
"start:prod": "npm run build && node dist/app.js",
"start:dev": "nodemon --exec babel-node src/app.js",
"build": "babel src -d dist -s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hueyy/unofficial-apis.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/hueyy/unofficial-apis/issues"
},
"homepage": "https://github.com/hueyy/unofficial-apis#readme",
"dependencies": {
"axios": "^0.19.1",
"cache-manager": "^2.10.1",
"cache-manager-ioredis": "^1.0.1",
"cheerio": "^1.0.0-rc.3",
"cors": "^2.8.5",
"express": "^4.17.1",
"slugify": "^1.3.6"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/node": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"nodemon": "^2.0.2"
}
}