-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 2.29 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
{
"name": "react-starter",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest --config 'jest.config.js' --passWithNoTests --silent --noStackTrace --runInBand --bail",
"test:dev": "yarn test --watch",
"test:staged": "yarn test --findRelatedTests",
"test:ci": "yarn test --no-cache --coverage",
"test:watch": "yarn test --watch",
"generate": "yarn plop --plopfile generators/plopfile.js",
"code-validator": "yarn lint-staged",
"clean": "rm -rf node_modules yarn.lock coverage .next && yarn cache clean --mirror",
"lint": "next lint",
"ci": "yarn clean && yarn install --frozen-lockfile",
"storybook": "start-storybook -s ./public -p 6006",
"build-storybook": "build-storybook -s ./public",
"cypress": "cypress open",
"cypress:headless": "cypress run",
"e2e": "start-server-and-test dev http://localhost:3000 cypress",
"e2e:headless": "start-server-and-test dev http://localhost:3000 cypress:headless",
"commit": "git-cz",
"prepare": "husky install"
},
"dependencies": {
"next": "^12.1.0",
"next-pwa": "^5.2.21",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"styled-components": "5.3.3"
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.1.0",
"@storybook/addon-essentials": "6.4.19",
"@storybook/react": "6.4.19",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@types/react": "^17.0.39",
"@types/styled-components": "^5.1.23",
"@typescript-eslint/eslint-plugin": "5.12.1",
"@typescript-eslint/parser": "5.12.1",
"cypress": "^9.5.0",
"cypress-plugin-stripe-elements": "^1.0.2",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.2",
"eslint-plugin-react-hooks": "^4.1.2",
"git-cz": "^4.7.1",
"husky": "^7.0.4",
"jest": "^27.5.1",
"jest-styled-components": "^7.0.3",
"lint-staged": "^12.3.4",
"plop": "^3.0.5",
"prettier": "^2.1.2",
"start-server-and-test": "^1.14.0",
"typescript": "^4.5.5"
},
"config": {
"commitizen": {
"path": "./node_modules/git-cz"
}
}
}