-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.05 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
{
"name": "makemake",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "nodejs dist/index.js",
"build": "tsc",
"prepare": "npm run build",
"dev": "ts-node src/index.ts",
"watch": "ts-node-dev --respawn src/index.ts",
"test": "jest"
},
"dependencies": {
"axios": "^0.21.1",
"cheerio": "^1.0.0-rc.5",
"express": "^4.17.1"
},
"devDependencies": {
"@types/cheerio": "^0.22.28",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.21",
"@types/node": "^14.14.35",
"jest": "^26.6.3",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.3"
},
"license": "MIT",
"homepage": "https://github.com/LeLuxNet/Makemake#readme",
"bugs": {
"url": "https://github.com/LeLuxNet/Makemake/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/LeLuxNet/Makemake.git"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"modulePathIgnorePatterns": [
"dist"
]
}
}