generated from pixelass/next-js-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.6 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
{
"name": "next-app",
"description": "Next.js template",
"private": true,
"license": "MIT",
"scripts": {
"build": "next build",
"build:dev": "npx cross-env@7 NODE_ENV=test next build",
"cypress": "npx cypress@9 open",
"cypress:run": "npx cypress@9 run",
"dev": "next dev",
"jest": "jest",
"jest:watch": "jest --watch",
"lint": "npm run tsc:noEmit && npm run eslint && npm run stylelint",
"eslint": "next lint",
"prepare": "npx husky install",
"stylelint": "npx stylelint src/{**/*,*}.{css,ts,tsx}",
"start": "next start",
"storybook": "start-storybook -p 6006",
"storybook:build": "build-storybook",
"test:e2e": "npx start-server-and-test@1 start http://localhost:3000 cypress:run",
"test:unit": "npm run jest",
"test": "npm run test:unit && npm run test:e2e",
"tsc:noEmit": "tsc --noEmit"
},
"dependencies": {
"@emotion/react": "11.7.1",
"@emotion/styled": "11.6.0",
"axios": "0.24.0",
"next": "12.0.8",
"react": "17.0.2",
"react-dom": "17.0.2",
"tslib": "2.3.1",
"zustand": "3.6.9"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.8",
"@babel/preset-typescript": "^7.16.7",
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"@emotion/babel-plugin": "^11.7.2",
"@jest/globals": "^27.3.1",
"@storybook/addon-actions": "^6.4.13",
"@storybook/addon-essentials": "^6.1.21",
"@storybook/addon-links": "^6.4.13",
"@storybook/react": "^6.1.21",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"babel-loader": "^8.2.3",
"babel-plugin-jsx-remove-data-test-id": "^3.0.0",
"cypress-cucumber-preprocessor": "^4.3.1",
"eslint": "8.7.0",
"eslint-config-next": "12.0.8",
"eslint-config-prettier": "^8.3.0",
"eslint-config-xo-react": "^0.26.0",
"eslint-plugin-jest": "^25.2.2",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-storybook": "^0.5.5",
"jest": "^27.3.1",
"postcss-syntax": "^0.36.2",
"prettier": "^2.5.1",
"stylelint": "^13.13.1",
"stylelint-a11y": "^1.2.3",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-property-sort-order-smacss": "^7.1.0",
"stylelint-config-standard": "^22.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-order": "^4.1.0",
"stylelint-processor-styled-components": "^1.10.0",
"typescript": "^4.6.2"
},
"cypress-cucumber-preprocessor": {
"nonGlobalStepDefinitions": true
}
}