-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.8 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
{
"name": "@travi/travi.org-core-components",
"description": "core React components for Travi.org sites",
"license": "MIT",
"version": "0.0.0-semantically-released",
"main": "lib/index.cjs.js",
"module": "lib/index.es.js",
"sideEffects": false,
"files": [
"lib/"
],
"publishConfig": {
"access": "public"
},
"repository": "travi-org/core-components",
"bugs": "https://github.com/travi-org/core-components/issues",
"homepage": "https://npm.im/@travi/core-components",
"author": "Matt Travi <[email protected]> (https://matt.travi.org/)",
"scripts": {
"test": "npm-run-all --print-label --parallel lint:* --parallel test:*",
"lint:lockfile": "lockfile-lint --path package-lock.json --type npm --validate-https --allowed-hosts npm",
"lint:js": "eslint . .storybook/ --cache",
"lint:md": "remark . --frail",
"lint:sensitive": "ban",
"clean": "rimraf ./lib",
"prebuild": "run-s clean",
"build": "npm-run-all --print-label --parallel build:*",
"build:js": "rollup --config",
"build:storybook": "build-storybook --quiet",
"predeploy:netlify": "run-s build:storybook",
"deploy:netlify": "netlify deploy --dir=./storybook-static",
"watch": "run-s 'build:js -- --watch'",
"prepack": "run-s build",
"start": "start-storybook --port 8888 --ci",
"test:unit": "cross-env NODE_ENV=test c8 run-s test:unit:base",
"test:unit:base": "DEBUG=any mocha 'src/**/*-test.js'",
"lint:peer": "npm ls >/dev/null",
"prepare": "husky install"
},
"dependencies": {
"@emotion/core": "^10.0.27",
"@material-ui/core": "^4.8.2",
"@material-ui/icons": "^4.5.1",
"@travi/brand": "^1.0.0",
"prop-types": "^15.7.2",
"react": "^17.0.0",
"react-dom": "^17.0.0"
},
"devDependencies": {
"@babel/register": "7.17.7",
"@emotion/babel-preset-css-prop": "10.2.1",
"@rollup/plugin-node-resolve": "13.1.3",
"@storybook/react": "6.4.19",
"@travi/any": "2.0.20",
"@travi/babel-preset": "3.0.82",
"@travi/eslint-config": "1.0.94",
"@travi/eslint-config-mocha": "1.0.16",
"@travi/eslint-config-react": "1.0.79",
"babel-loader": "8.2.4",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"ban-sensitive-files": "1.9.18",
"c8": "7.11.0",
"chai": "4.3.6",
"commitlint-config-travi": "1.4.10",
"cross-env": "7.0.3",
"cz-conventional-changelog": "3.3.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.5",
"husky": "7.0.4",
"lockfile-lint": "4.7.4",
"mocha": "9.2.2",
"netlify-cli": "9.16.0",
"npm-run-all": "4.1.5",
"remark-cli": "10.0.1",
"remark-preset-lint-travi": "2.0.9",
"rimraf": "3.0.2",
"rollup": "2.79.1",
"rollup-plugin-auto-external": "2.0.0",
"rollup-plugin-babel": "4.4.0",
"sinon": "13.0.1",
"webpack": "4.46.0"
}
}