-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.48 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
{
"name": "scraper",
"version": "1.0.0",
"type": "module",
"main": "dist/index.jade",
"description": "",
"dependencies": {
"@parcel/resolver-default": "^2.0.0-beta.2",
"@parcel/transformer-babel": "^2.0.0-beta.2",
"@parcel/transformer-pug": "^2.0.0-alpha.3",
"@popperjs/core": "^2.9.2",
"bootstrap": "^5.0.1",
"cheerio": "^1.0.0-rc.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jade": "^1.11.0",
"mongodb": "3.6.3",
"node-fetch": "^2.6.1",
"parcel": "^2.0.0-beta.2"
},
"devDependencies": {
"@types/bootstrap": "^5.0.15",
"@types/cheerio": "^0.22.27",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/jade": "0.0.30",
"@types/mongodb": "^3.6.9",
"@types/node": "^14.14.34",
"@types/node-fetch": "^2.5.8",
"nodemon": "^2.0.7",
"pug": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:server": "node dist/api/index.js",
"dev:server": "nodemon src/api/index.ts",
"build:ts": "tsc -p .",
"fetch:server": "node dist/api/mongoDB.js",
"dev:parcel": "parcel src/public/views/index.jade --no-cache",
"build:bundle": "parcel build src/public/views/index.jade --no-cache"
},
"author": "AP Multimediadesigner, Lasse Aakjær",
"sass": "node_modules/bootstrap/scss/bootstrap.scss",
"style": "node_modules/bootstrap/dist/css/bootstrap.css",
"license": "ISC"
}