-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.24 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.24 KB
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
{
"name": "chart-toppers",
"version": "1.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"deploy": "sls",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "yarn lint --fix",
"test:e2e": "cypress run -P tests/e2e",
"test:e2e:open": "cypress open -P tests/e2e",
"test:unit": "jest unit",
"test:acceptance": "jest acceptance",
"test": "jest && yarn test:e2e",
"test:coverage": "jest --coverage",
"test:watch": "yarn test:unit --watchAll",
"test:full": "yarn lint && yarn test:coverage && yarn test:e2e",
"storybook": "start-storybook -p 6006 --no-dll",
"build-storybook": "build-storybook --no-dll"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.12.3",
"@storybook/addon-actions": "^6.0.28",
"@storybook/addon-essentials": "^6.0.28",
"@storybook/addon-links": "^6.0.28",
"@storybook/react": "^6.0.28",
"@testing-library/dom": "^7.26.4",
"@testing-library/jest-dom": "^5.11.5",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/cypress": "^1.1.3",
"@types/faker": "^5.1.4",
"@types/jest": "^26.0.3",
"@types/next": "^9.0.0",
"@types/node": "^14.14.2",
"@types/react": "^16.9.53",
"@types/urijs": "^1.19.13",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^4.5.0",
"babel-loader": "^8.2.1",
"cypress": "^5.4.0",
"eslint": "^7.3.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"faker": "^5.1.0",
"fast-check": "^2.6.1",
"husky": "^4.3.0",
"jest": "^26.1.0",
"node-sass": "^4.14.1",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"react-is": "^17.0.1",
"sass-loader": "^10.1.0",
"serverless": "^2.8.0",
"storybook": "^6.0.28",
"ts-jest": "^26.4.1",
"ts-node": "^8.10.2",
"typescript": "^4.0.3"
},
"husky": {
"hooks": {
"pre-commit": "yarn test:full"
}
},
"dependencies": {
"axios": "^0.21.0",
"focus-visible": "^5.2.0",
"next": "^9.5.5",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"urijs": "^1.19.2"
}
}