forked from dequelabs/cauldron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 3.86 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
{
"name": "cauldron",
"private": true,
"version": "5.0.0",
"license": "MPL-2.0",
"scripts": {
"build": "concurrently \"yarn build:styles\" \"yarn build:react\" \"yarn build:docs\"",
"build:react": "cross-env NODE_ENV=production yarn --cwd=packages/react build",
"build:styles": "cross-env NODE_ENV=production yarn --cwd=packages/styles build",
"build:docs": "cross-env NODE_ENV=production webpack --bail",
"dev": "concurrently \"yarn dev:styles\" \"yarn dev:react\" \"yarn dev:docs\"",
"dev:react": "yarn --cwd=packages/react dev",
"dev:styles": "yarn --cwd=packages/styles dev",
"dev:docs": "webpack-dev-server",
"fmt": "prettier --write \"e2e/*.ts\" \"docs/**/*.{css,js}\" \"packages/react/**/*.{js,ts,tsx}\" \"packages/styles/*.css\" *.{js,json,md,ts}",
"lint": "eslint .",
"test": "yarn --cwd=packages/react test",
"test:a11y": "ts-node e2e/accessibility.ts",
"postinstall": "yarn --cwd=packages/styles && yarn --cwd=packages/react",
"release": "standard-version"
},
"prettier": {
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
],
"*.{json,css,md,ts,tsx}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@axe-core/puppeteer": "^4.3.1",
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.0.0",
"@babel/preset-stage-0": "^7.0.0",
"@babel/preset-typescript": "^7.8.3",
"@babel/register": "^7.4.0",
"@fontsource/lato": "^4.5.0",
"@fontsource/pt-mono": "^4.5.0",
"@fontsource/roboto": "^4.5.1",
"@types/classnames": "^2.2.9",
"@types/express": "^4.17.13",
"@types/http-server": "^0.12.1",
"@types/jest": "^28.1.3",
"@types/jest-axe": "^3.5.4",
"@types/node": "^18.0.0",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"@types/react-router-dom": "^5.3.2",
"@types/react-syntax-highlighter": "^11.0.4",
"@types/webpack-dev-server": "^3.10.1",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"autoprefixer": "^9.7.6",
"axe-core": "^4.3.5-canary.0ddc00b",
"babel-loader": "^8.0.5",
"babel-plugin-module-resolver": "^3.0.0",
"babel-plugin-transform-export-extensions": "^6.22.0",
"chalk": "^4.1.2",
"classnames": "^2.2.6",
"closest": "0.0.1",
"concurrently": "^6.0.0",
"cross-env": "^7.0.3",
"css-loader": "^0.28.7",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.11.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.5.1",
"express": "^4.17.1",
"file-loader": "^1.1.5",
"fontsource-lato": "^4.0.0",
"fontsource-roboto": "^3.0.3",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.0.0-rc.14",
"jest-axe": "^5.0.1",
"jsdom": "^15.2.1",
"jsdom-global": "^3.0.2",
"lint-staged": "^7.2.2",
"log-symbols": "4",
"mini-css-extract-plugin": "^0.9.0",
"nyc": "^11.3.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-cli": "^6.0.1",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"prettier": "^1.19.1",
"proxyquire": "^1.8.0",
"puppeteer": "^10.4.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-element-to-jsx-string": "^14.0.2",
"react-helmet": "^5.2.1",
"react-router-dom": "^5.3.0",
"standard-version": "^9.1.1",
"style-loader": "^0.19.0",
"terser-webpack-plugin": "^2.3.5",
"ts-node": "^8.9.1",
"typescript": "^3.7.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
}
}