-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
executable file
·111 lines (111 loc) · 3.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
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
{
"name": "asu",
"private": true,
"license": "MIT",
"volta": {
"node": "20.15.1",
"yarn": "1.22.10"
},
"workspaces": [
"packages/*"
],
"scripts": {
"lerna-clean": "lerna clean && rm -rf ./node_modules",
"lint": "lerna run lint",
"build-storybook": "lerna run build-storybook && gulp",
"build-components-core": "lerna run --scope @asu/components-core build",
"build-component-carousel": "lerna run --scope @asu/component-carousel build",
"build": "lerna run --ignore @asu/components-core --ignore @asu/component-carousel build",
"prebuild": "yarn build-components-core && yarn build-component-carousel && yarn lint",
"postbuild": "lerna run --ignore=@asu/unity-bootstrap-theme docs",
"test": "lerna run test --stream",
"test:e2e": "jest",
"prepublish-packages": "node scripts/copy-license.js",
"publish-packages": "lerna exec --concurrency 1 -- npx --no-install semantic-release --debug -e semantic-release-monorepo",
"percy-test": "export PERCY_PARALLEL_TOTAL=-1 && node ./scripts/percy-testing.js",
"start": "node server/server.js",
"stop": "node server/server.stop.js",
"prepare": "husky install",
"commit": "cz",
"check-element-changes": "node ./scripts/check-element-changes.js -d"
},
"jest": {
"preset": "jest-puppeteer",
"verbose": true,
"roots": [
"tests"
],
"setupFilesAfterEnv": [
"@wordpress/jest-puppeteer-axe",
"expect-puppeteer"
],
"testTimeout": 30000
},
"repository": {
"type": "git",
"url": "https://github.com/ASU/asu-unity-stack.git"
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@commitlint/config-lerna-scopes": "^12.0.1",
"@percy/storybook": "^5.0.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "10.0.1",
"@storybook/addons": "^7.6.14",
"@storybook/api": "^7.6.14",
"@storybook/components": "^7.6.14",
"@storybook/core-events": "^7.6.14",
"@storybook/react": "^7.6.14",
"@storybook/theming": "^7.6.14",
"@types/node": "^20.0.0",
"clean-webpack-plugin": "^3.0.0",
"commitizen": "^4.2.3",
"copy-webpack-plugin": "^8.1.1",
"css-minimizer-webpack-plugin": "^2.0.0",
"cz-conventional-changelog": "3.3.0",
"dompurify": "^2.2.7",
"eslint": "^8",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-preact": "^1.1.3",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-import-helpers": "^1.1.0",
"eslint-plugin-jest": "^25.0.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"gh-pages": "^6.0.0",
"glob": "^7.1.3",
"gulp": "^4.0.2",
"gulp-clean": "^0.4.0",
"gulp-filter": "^7.0.0",
"gulp-nunjucks": "^5.1.0",
"husky": "^6.0.0",
"inquirer": "^8.0.0",
"inquirer-autocomplete-prompt": "^2.0.0",
"lerna": "^6.4.1",
"mini-css-extract-plugin": "^2.0.0",
"nunjucks": "^3.2.0",
"prettier": "^2.2.1",
"purgecss-webpack-plugin": "^4.0.3",
"rimraf": "^3.0.2",
"semantic-release": "18.0.1",
"semantic-release-monorepo": "^7.0.4",
"start-server-and-test": "^1.9.1",
"typescript": "^4.0.0",
"webpack": "^5.32.0",
"webpack-bundle-analyzer": "^4.4.1",
"webpack-cli": "^4.6.0",
"webpack-dashboard": "^3.3.1",
"webpack-merge": "^5.7.3",
"webpack-node-externals": "^2.5.0"
},
"dependencies": {},
"config": {
"commitizen": {
"path": "./scripts/conventional-commits.js"
}
}
}