-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
56 lines (56 loc) · 1.26 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
{
"name": "nests",
"version": "1.0.0",
"private": true,
"homepage": "http://ognis1205.github.io/nests",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"export": "next export",
"test": "jest"
},
"dependencies": {
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@types/react-dom": "^18.0.2",
"dotenv": "^14.3.2",
"next": "^12.0.9",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"standardized-audio-context": "^25.3.19"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^17.0.25",
"@types/react": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.8.0",
"eslint-config-next": "^12.0.9",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.28.0",
"gh-pages": "^3.2.3",
"jest": "^27.4.7",
"ts-jest": "^27.1.3",
"typescript": "^4.6.3"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json"
}
},
"testMatch": [
"**/tests/**/*.test.ts"
]
}
}