-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.76 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
{
"name": "alza-test",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"storybook": "start-storybook -p 6006 -c .storybook --ci",
"format": "prettier --write 'src/**/*.{ts,tsx}'",
"lint:ts": "eslint src --ext=ts,tsx --fix",
"lint:css": "stylelint './src/**/*{ts,tsx}'",
"test": "jest"
},
"dependencies": {
"@types/styled-components": "^5.1.4",
"@types/styled-system": "^5.1.10",
"isomorphic-unfetch": "^3.1.0",
"next": "9.5.5",
"react": "16.14.0",
"react-dom": "16.14.0",
"react-query": "^2.23.1",
"styled-components": "^5.2.0",
"styled-system": "^5.1.5",
"swr": "^0.3.5"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@storybook/react": "^6.0.26",
"@strv/eslint-config-react": "^3.1.2",
"@strv/prettier-config": "^1.0.3",
"@strv/stylelint-config-styled-components": "^1.1.1",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@types/node": "^14.11.8",
"@types/react": "^16.9.53",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"babel-jest": "^26.5.2",
"babel-loader": "^8.1.0",
"babel-preset-react-app": "^9.1.2",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.13.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.5.3",
"prettier": "^2.1.2",
"stylelint": "^13.7.2",
"stylelint-config-prettier": "^8.0.2",
"ts-jest": "^26.4.1",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"typescript": "^4.0.3"
},
"prettier": "@strv/prettier-config"
}