-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 4.1 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
{
"name": "@travi/matt.travi.org-components",
"description": "react components for my profile site",
"version": "0.0.0-semantically-released",
"main": "lib/components.cjs.js",
"module": "lib/components.es.js",
"sideEffects": false,
"license": "MIT",
"author": "Matt Travi",
"repository": "travi-org/matt.travi.org-components",
"bugs": "https://github.com/travi-org/matt.travi.org-components/issues",
"homepage": "https://matt-components.travi.org",
"scripts": {
"clean": "rimraf storybook-static/ lib/",
"lint:md": "remark --quiet . --frail",
"lint:js": "eslint . .storybook --cache",
"lint:lockfile": "lockfile-lint --path package-lock.json --type npm --validate-https --allowed-hosts npm",
"lint:peer": "npm ls >/dev/null",
"test:unit:raw": "mocha 'src/**/*-test.js'",
"test:unit": "run-s coverage",
"disabled-test:integration": "start-server-and-test 'npm start -- --quiet' http://localhost:6006 'npm run cypress:run -- ${CYPRESS_RECORD_KEY:+--record}'",
"test": "npm-run-all --print-label --parallel lint:* --parallel test:*",
"coverage": "nyc run-s test:unit:raw",
"coverage:report": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"start": "start-storybook --port 6006 --ci",
"build:storybook": "build-storybook --quiet",
"presnapshot": "ANY_SEED=452204917091.8763 run-s build-storybook",
"snapshot": "percy-storybook --widths=320,1280",
"build:js": "rollup -c",
"build": "run-s clean build:*",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"prepack": "run-s build",
"predeploy:netlify": "npm run build",
"deploy:netlify": "npx --package netlify-cli netlify deploy --dir=./storybook-static",
"deploy:chromatic": "npx chromatic --build-script-name=build:storybook --exit-once-uploaded",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"publishConfig": {
"access": "public"
},
"files": [
"lib/"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@babel/register": "7.17.7",
"@emotion/babel-preset-css-prop": "10.2.1",
"@percy-io/percy-storybook": "2.1.0",
"@rollup/plugin-node-resolve": "13.1.3",
"@storybook/addon-actions": "6.4.19",
"@storybook/addon-info": "6.0.0-alpha.2",
"@storybook/addon-links": "6.4.19",
"@storybook/react": "6.4.19",
"@testing-library/cypress": "8.0.2",
"@travi/any": "2.0.20",
"@travi/babel-preset": "3.0.82",
"@travi/eslint-config": "1.0.94",
"@travi/eslint-config-cypress": "1.0.33",
"@travi/eslint-config-mocha": "1.0.16",
"@travi/eslint-config-react": "1.0.79",
"@travi/travi.org-theme-components": "1.2.0",
"babel-loader": "8.2.4",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"chai": "4.3.6",
"codecov": "3.8.3",
"commitlint-config-travi": "1.4.10",
"cypress": "9.5.3",
"cz-conventional-changelog": "3.3.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.6",
"globstar": "1.0.0",
"husky": "7.0.4",
"lockfile-lint": "4.7.4",
"microformat-node": "2.0.1",
"mocha": "9.2.2",
"npm-run-all": "4.1.5",
"nyc": "15.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-test-renderer": "18.2.0",
"remark-cli": "10.0.1",
"remark-preset-lint-travi": "2.0.9",
"rimraf": "3.0.2",
"rollup": "2.70.1",
"rollup-plugin-auto-external": "2.0.0",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-json": "4.0.0",
"sinon": "13.0.1",
"start-server-and-test": "1.14.0"
},
"peerDependencies": {
"react": "^16.0.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0"
},
"dependencies": {
"@emotion/core": "10.3.1",
"@material-ui/core": "^4.9.1",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.47",
"@travi/brand": "^1.0.0",
"@travi/travi.org-core-components": "1.1.3",
"polished": "^4.1.3",
"prop-types": "15.8.1",
"snyk": "^1.685.0",
"travi": "1.1.0"
},
"snyk": true,
"optionalDependencies": {
"fsevents": "^2.3.2"
}
}