-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
68 lines (68 loc) · 1.67 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
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "sabesp-mananciais-api",
"version": "2.0.0",
"description": "A simple scraping from Sabesp website",
"main": "dist/server.js",
"author": "Rafaell Lycan <sonny.webdsg@gmail.com> (https://rafaell-lycan.com)",
"keywords": [
"sabesp",
"scraping",
"mananciais",
"água"
],
"scripts": {
"clean": "rm -rf dist",
"build": "yarn clean && tsc",
"develop": "nodemon --watch src -x ts-node src/server.ts",
"start": "yarn build && node dist/server.js",
"test": "jest"
},
"jest": {
"clearMocks": true,
"preset": "ts-jest",
"testEnvironment": "node",
"testRegex": "\\.(test|spec)\\.ts$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"dependencies": {
"cors": "^2.8.5",
"date-fns": "^2.24.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"got": "^11.8.2",
"helmet": "^4.6.0",
"invariant": "^2.2.4",
"morgan": "^1.10.0",
"serve-favicon": "^2.5.0",
"swagger-ui-express": "^4.1.6",
"typescript": "^4.4.3",
"universal-analytics": "^0.4.23",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/invariant": "^2.2.35",
"@types/jest": "^27.0.1",
"@types/morgan": "^1.9.3",
"@types/node": "^16.9.2",
"@types/serve-favicon": "^2.5.3",
"@types/supertest": "^2.0.11",
"@types/swagger-ui-express": "^4.1.3",
"@types/universal-analytics": "^0.4.5",
"jest": "^27.2.0",
"nodemon": "^2.0.12",
"prettier": "^2.4.1",
"supertest": "^6.1.6",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1"
},
"license": "MIT"
}