-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 1.89 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
69
70
71
72
73
{
"name": "sidewalk-obstruction-bingo",
"version": "0.1.0",
"description": "A Bingo game for finding and reporting sidewalk obstructions",
"repository": "github:jyasskin/sidewalk-obstruction-bingo",
"main": "pages/index.js",
"scripts": {
"dev": "next",
"build": "next build",
"preexport": "npm run build",
"export": "next export",
"prestart": "npm run export",
"start": "serve out",
"test": "jest --watch",
"test:ci": "jest --ci",
"testonce": "jest"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@reduxjs/toolkit": "^1.3.6",
"bootstrap": "^4.5.0",
"idb": "^5.0.3",
"next": "^9.4.0",
"next-offline": "^5.0.2",
"pushid": "^1.0.0",
"react": "^16.13.1",
"react-bootstrap": "^1.3",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"swr": "^0.2.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.7.0",
"@testing-library/react": "^10.0.4",
"@types/jest": "^25.2.1",
"@types/node": "^13.13.6",
"@types/react": "^16.9.35",
"@types/react-redux": "^7.1.8",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"eslint": "^6.8.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^3.0.0",
"fake-indexeddb": "^3.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^25.5.4",
"serve": "^11.3.0",
"ts-jest": "^25.5.1",
"typescript": "^3.9.2"
},
"jest": {
"preset": "ts-jest",
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.test.json"
}
},
"setupFilesAfterEnv": [
"fake-indexeddb/auto",
"<rootDir>/setupTests.ts"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/.next/"
],
"moduleNameMapper": {
"^.+\\.module\\.(css|sass|scss)$": "identity-obj-proxy"
}
}
}