-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
108 lines (108 loc) · 3.67 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"scripts": {
"dev": "NODE_OPTIONS='--inspect' next dev",
"next:build": "next build",
"next:start": "next start",
"next:lint": "next lint",
"layer0": "cross-env LAYER0=true layer0",
"layer0:dev": "cross-env LAYER0=true NODE_ENV=development layer0 dev",
"layer0:build": "cross-env LAYER0=true layer0 build",
"layer0:deploy": "cross-env LAYER0=true layer0 deploy --wait-layer0=false",
"layer0:env-pull": "layer0 env pull --team=madeiramadeira",
"type:check": "tsc --pretty --noEmit",
"type:watch": "tsc --pretty -w",
"lint": "eslint 'src/**/*.{ts,tsx,js,jsx}'",
"lint:fix": "yarn lint --fix",
"test": "jest --verbose --env=jsdom",
"test:watch": "jest --watch --verbose --env=jsdom",
"test:unit": "jest --verbose --env=jsdom --config=jest-unit.config.js",
"test:unit:watch": "jest --verbose --env=jsdom --config=jest-unit.config.js --watchAll",
"test:integration": "jest --verbose --env=jsdom --config=jest-integration.config.js",
"test:integration:watch": "jest --verbose --env=jsdom --config=jest-integration.config.js --watchAll",
"format": "prettier --write **/*.{js,ts,tsx}",
"format:check": "prettier --check .",
"prepare": "is-ci || husky install",
"commit": "lint-staged && cz --no-verify",
"clean": "npx del-cli .next .layer0",
"analyze": "yarn clean && cross-env ANALYZE=true yarn build"
},
"name": "nextjs-boilerplate",
"version": "0.1.0",
"private": true,
"dependencies": {
"@cavilha/box": "^0.0.0-alpha.2",
"@cavilha/flex": "^0.0.0-alpha.3",
"@cavilha/layout": "^0.0.0-alpha.3",
"@cavilha/text": "^0.0.0-alpha.5",
"@cavilha/theme": "^0.0.0-alpha.4",
"@stitches/react": "0.2.2",
"graphql": "^15.5.3",
"graphql-hooks": "^5.4.0",
"graphql-request": "^3.5.0",
"next": "11.1.2",
"next-react-svg": "^1.1.3",
"react": "17.0.2",
"react-dom": "17.0.2",
"stitches-reset": "^1.0.0"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@layer0/cli": "^3.16.10",
"@layer0/core": "^3.16.10",
"@layer0/devtools": "^3.16.10",
"@layer0/next": "^3.16.10",
"@layer0/prefetch": "^3.16.10",
"@layer0/react": "^3.16.10",
"@next/bundle-analyzer": "^11.1.2",
"@testing-library/dom": "^8.1.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/graphql": "^14.5.0",
"@types/jest": "^27.0.1",
"@types/react": "17.0.21",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"babel-jest": "^26.6.3",
"commitizen": "^4.2.4",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-next": "11.1.2",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sonarjs": "^0.10.0",
"husky": "^7.0.0",
"is-ci": "^3.0.0",
"jest": "^27.0.6",
"jest-watch-typeahead": "^0.5.0",
"next-compose-plugins": "^2.2.1",
"prettier": "^2.4.0",
"typescript": "4.4.3"
},
"jest": {
"testEnvironment": "node"
},
"lint-staged": {
"*.@(ts|tsx|js|jsx)": [
"yarn eslint",
"yarn format"
],
"*.@(json)": [
"yarn format"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}