-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
81 lines (81 loc) · 1.97 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
74
75
76
77
78
79
80
81
{
"name": "time",
"version": "0.2.0",
"private": true,
"homepage": "https://dentime.anozon.me",
"scripts": {
"dev": "next",
"test": "jest",
"lint": "eslint --ext .ts,.tsx src",
"build": "next build",
"export": "yarn build && next export",
"precommit": "lint-staged",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@babel/plugin-proposal-decorators": "7.20.13",
"@babel/preset-env": "7.20.2",
"@babel/preset-react": "7.18.6",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.6",
"jest": "27.5.1",
"next": "12.1.6",
"next-pwa": "5.4.4",
"normalize.css": "8.0.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"styled-components": "5.3.3",
"swr": "1.2.2",
"typescript": "4.5.5",
"unfetch": "4.2.0",
"use-seconds": "1.6.0"
},
"devDependencies": {
"@babel/core": "7.20.12",
"@babel/polyfill": "7.12.1",
"@storybook/addon-actions": "6.3.12",
"@storybook/addon-info": "5.3.21",
"@storybook/addon-links": "6.3.12",
"@storybook/addons": "6.3.12",
"@storybook/react": "6.3.12",
"@types/jest": "27.5.2",
"@types/node": "16.18.23",
"@types/react": "17.0.55",
"@types/react-dom": "17.0.19",
"@types/react-test-renderer": "17.0.2",
"@types/styled-components": "5.1.26",
"all-contributors-cli": "6.20.0",
"babel-jest": "27.5.1",
"babel-loader": "8.2.5",
"babel-plugin-styled-components": "1.13.3",
"babel-preset-env": "1.7.0",
"babel-preset-react": "6.24.1",
"eslint": "7.32.0",
"eslint-config-next": "11.1.4",
"jest-styled-components": "7.0.8",
"lint-staged": "11.2.6",
"react-docgen-typescript-loader": "3.7.2",
"react-test-renderer": "17.0.2",
"ts-jest": "27.1.3",
"ts-loader": "9.2.6"
},
"lint-staged": {
"*.ts,.*.tsx": [
"eslint --fix",
"git add"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}