-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.71 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
{
"name": "bolt-weather",
"description": "A weather app built with Next.js, Zustand, SWR and Base Web UI",
"version": "1.0.0",
"homepage": "https://boltweather.netlify.app/",
"license": "MIT",
"author": "Tom Watts",
"repository": {
"type": "git",
"url": "git+https://github.com/tomcwatts/bolt-weather.git"
},
"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": {
"@fluentui/react-icons": "^2.0.178",
"@types/jest": "^28.1.6",
"@types/node": "^18.6.4",
"@types/react": "^18.0.15",
"@types/styletron-engine-atomic": "^1.1.1",
"@types/styletron-react": "^5.0.3",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"baseui": "^12.0.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"jest": "^28.1.3",
"next": "^12.2.4",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styletron-engine-atomic": "^1.5.0",
"styletron-react": "^6.1.0",
"swr": "^1.3.0",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4",
"zustand": "^4.0.0"
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.2.4",
"eslint-plugin-baseui": "^12.0.0"
}
}