-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.8 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
{
"name": "covid-near-me",
"version": "1.0.0",
"description": "",
"scripts": {
"jest": "jest --runInBand --detectOpenHandles",
"testjest": "run-script-os",
"testjest:darwin:linux": "sleep 30 && npm run jest",
"testjest:win32": "npm run jest",
"test": "npm run type-check && npm run build && npm run compose && sleep 30 && npm run testjest",
"coveralls": "jest --coverage --coverageReporters=text-lcov | coveralls",
"dev": "npm run build && cross-env NODE_OPTIONS='--inspect' next dev src",
"build": "next build src",
"start": "npm run build && next start src",
"type-check": "tsc",
"compose": "docker-compose up --build -d"
},
"repository": {
"type": "git",
"url": "git+https://github.com/doniseferi/covid-near-me.git"
},
"author": "Edonis Seferi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/doniseferi/covid-near-me/issues"
},
"homepage": "https://github.com/doniseferi/covid-near-me#readme",
"dependencies": {
"next": "^10.0.2",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@pollyjs/adapter-node-http": "^5.0.0",
"@pollyjs/core": "^5.0.0",
"@pollyjs/persister-fs": "^5.0.0",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.2",
"@types/opossum": "^4.1.1",
"@types/pg": "^7.14.5",
"@types/pollyjs__adapter-node-http": "^2.0.1",
"@types/pollyjs__core": "^4.3.1",
"@types/pollyjs__persister-fs": "^2.0.1",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"axios": "^0.20.0",
"babel-jest": "^26.3.0",
"coveralls": "^3.1.0",
"cross-env": "^7.0.2",
"jest": "^26.4.2",
"jest-watch-typeahead": "^0.6.1",
"opossum": "^5.0.2",
"pg": "^8.3.3",
"run-script-os": "^1.1.3",
"typescript": "^4.0.3"
}
}