-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.42 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
{
"name": "anthaathi-website",
"version": "1.0.0",
"license": "MIT",
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"lint": "eslint 'src/**/*.{js,ts,tsx}'",
"start": "next start",
"test": "jest",
"tsc": "tsc --noEmit"
},
"jest": {
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.jest.json"
}
},
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
},
"dependencies": {
"baseui": "^11.0.3",
"next": "^12.1.6",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"styletron-engine-atomic": "^1.4.8",
"styletron-react": "^6.0.2",
"typescript": "^4.7.2"
},
"devDependencies": {
"@carbon/icons-react": "^11.4.0",
"@next/eslint-plugin-next": "^12.1.6",
"@types/jest": "^27.5.1",
"@types/node": "^17.0.35",
"@types/react": "^18.0.5",
"@types/react-dom": "^18.0.5",
"@types/styletron-engine-atomic": "^1.1.1",
"@types/styletron-react": "^5.0.3",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"jest": "^28.1.0",
"prettier": "^2.6.2",
"ts-jest": "^28.0.3"
}
}