-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 973 Bytes
/
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
{
"name": "gas-calculator",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"test": "jest"
},
"dependencies": {
"next": "^12.2.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-media-hook": "^0.4.9",
"react-reveal": "^1.2.2",
"react-transition-group": "^4.4.1",
"sass": "^1.32.7"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^14.14.21",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.8.1",
"babel-jest": "^26.6.3",
"eslint": "^7.19.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-react": "^7.21.5",
"jest": "^26.6.3",
"jest-dom": "^4.0.0",
"typescript": "^4.1.3"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/.next/",
"<rootDir>/node_modules/"
]
}
}