-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
128 lines (128 loc) · 3.57 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"version": "0.0.1",
"name": "@spon/workspace",
"private": true,
"author": {
"email": "[email protected]",
"name": "Dave Stockley",
"url": "https://spon.io"
},
"repository": {
"type": "git",
"url": "ssh://[email protected]:magicspon/nextjs-craftcms-mono.git"
},
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"storybook": "yarn workspace @spon/ui run start:storybook",
"test": "yarn lerna run test --stream --concurrency 1",
"dev": "yarn workspace @spon/app run dev",
"build": "yarn workspace @spon/app run build",
"start": "yarn workspace @spon/app run start",
"lint": "yarn workspace @spon/app run lint",
"pretify": "yarn workspace @spon/app run prettier",
"prepare": "husky install",
"release": "lerna version --conventional-commits",
"new:component": "hygen component with-prompt",
"new:page": "hygen page with-prompt",
"new:context": "hygen context with-prompt",
"new:hook": "hygen hook with-prompt"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.8",
"@babel/preset-typescript": "^7.14.5",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@commitlint/config-lerna-scopes": "^13.1.0",
"@cypress/react": "^5.9.2",
"@cypress/webpack-dev-server": "^1.4.0",
"@next/eslint-plugin-next": "^11.0.1",
"@storybook/addon-a11y": "^6.3.4",
"@storybook/addon-actions": "^6.3.2",
"@storybook/addon-essentials": "^6.3.4",
"@storybook/addon-jest": "^6.3.4",
"@storybook/addon-links": "^6.3.4",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/react": "^6.3.4",
"@storybook/testing-react": "^0.0.21",
"@svgr/webpack": "^5.5.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^7.0.1",
"@types/node": "^16.3.1",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"autoprefixer": "^10.3.1",
"babel-jest": "^27.0.6",
"babel-loader": "^8.2.2",
"babel-plugin-module-resolver": "4.1.0",
"commitlint": "^13.1.0",
"cypress": "^8.0.0",
"eslint": "^7.31.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-lerna": "^2.0.0",
"eslint-plugin-compat": "^3.11.1",
"eslint-plugin-cypress": "^2.11.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.1.2",
"html-webpack-plugin": "5",
"husky": "^7.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.0.6",
"jest-cli": "^27.0.6",
"lerna": "^4.0.0",
"lerna-changelog": "^2.1.0",
"postcss": "^8.3.6",
"postcss-loader": "^6.1.1",
"prettier": "^2.3.2",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^22.0.0",
"svg-jest": "^1.0.1",
"tailwindcss": "^2.2.7",
"ts-jest": "^27.0.4",
"tsconfig-paths": "3.10.1",
"typescript": "4.3.5",
"webpack": "5.50.0",
"webpack-dev-server": "3"
},
"engines": {
"node": ">=12.0.0",
"yarn": "^1.5"
},
"quokka": {
"babel": {
"env": "test",
"polyfill": false
},
"installPackageCommand": "yarn add {packageName}",
"env": {
"params": {
"env": "NODE_ENV=test"
}
}
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"yarn workspace @spon/app run lint",
"yarn workspace @spon/ui run lint"
],
"**/*.{ts,tsx,json,js,css}": [
"prettier --write"
],
"*.css": "stylelint --fix",
"*.--write": "prettier --write"
},
"volta": {
"node": "14.16.0",
"yarn": "1.22.10"
}
}