This repository has been archived by the owner on Mar 31, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.79 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": "olist-orders-frontend",
"version": "0.0.1",
"description": "Olist Orders is the old Tracking, but with many improvements for the buyer.",
"main": "index.js",
"repository": "git@github.com:olist/olist-orders-frontend.git",
"author": "Olist Developers <developers@olist.com>",
"license": "MIT",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint ./src --ext .js,.jsx,.ts,.tsx --fix",
"test": "jest --config jest.config.js",
"test:coverage": "jest --config jest.config.js --coverage",
"test:watch": "jest --config jest.config.js --watch",
"postinstall": "husky install",
"storybook": "start-storybook -p 6006 -s ./",
"build-storybook": "build-storybook"
},
"dependencies": {
"@olist/ui-commons": "^0.15.1",
"@olist/united": "^0.10.29",
"@styled-system/theme-get": "^5.1.2",
"@testing-library/user-event": "^12.8.3",
"axios": "^0.21.1",
"babel-plugin-styled-components": "^1.12.0",
"i18next": "^19.9.0",
"next": "10.0.7",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-i18next": "^11.8.8",
"react-query": "^3.12.0",
"react-use": "^17.1.1",
"styled-components": "^5.2.1",
"styled-map": "^3.3.0",
"styled-system": "^5.1.5"
},
"devDependencies": {
"@alienfast/i18next-loader": "^1.1.4",
"@babel/core": "^7.13.1",
"@storybook/addon-a11y": "^6.1.21",
"@storybook/addon-actions": "^6.1.20",
"@storybook/addon-controls": "^6.1.20",
"@storybook/addon-docs": "^6.1.21",
"@storybook/addon-essentials": "^6.1.20",
"@storybook/addon-links": "^6.1.20",
"@storybook/react": "^6.1.21",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.28",
"@types/react": "^17.0.2",
"@types/styled-components": "^5.1.9",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"audit-ci": "^3.1.1",
"axios-mock-adapter": "^1.19.0",
"babel-loader": "^8.2.2",
"babel-plugin-i18next-extract": "^0.8.2",
"eslint": "^7.20.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-sort-destructure-keys": "^1.3.5",
"husky": "^5.1.1",
"i18next-extract": "^0.1.3",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"typescript": "^4.1.5"
}
}