-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 3.04 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
{
"name": "@travi/travi.org-theme-components",
"description": "React components that implement the shared theme for Travi.org sites",
"license": "MIT",
"version": "0.0.0-semantically-released",
"author": "Matt Travi <[email protected]> (https://matt.travi.org/)",
"repository": "travi-org/theme-components",
"bugs": "https://github.com/travi-org/theme-components/issues",
"homepage": "https://npm.im/@travi/theme-components",
"main": "lib/index.cjs.js",
"module": "lib/index.es.js",
"sideEffects": false,
"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 . --cache",
"lint:md": "remark . --frail",
"lint:sensitive": "ban",
"lint:peer": "npm ls >/dev/null",
"clean": "rimraf ./lib",
"prebuild": "run-s clean",
"build": "npm-run-all --print-label --parallel build:*",
"build:js": "rollup --config",
"watch": "run-s 'build:js -- --watch'",
"prepack": "run-s build:js",
"start": "start-storybook --port 8888 --ci",
"build:storybook": "build-storybook --quiet",
"test:unit": "cross-env NODE_ENV=test c8 run-s test:unit:base",
"test:unit:base": "DEBUG=any mocha 'src/**/*-test.js'",
"test:integration": "start-server-and-test 'npm start -- --quiet' http://localhost:8888 'npm run cypress:run -- ${CYPRESS_RECORD_KEY:+--record}'",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"prepare": "husky install"
},
"files": [
"lib/"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@emotion/core": "^10.0.28",
"@material-ui/core": "^4.8.2",
"@material-ui/icons": "^4.5.1",
"@travi/brand": "^1.0.0",
"polished": "^4.0.0",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"travi": "^1.0.0"
},
"devDependencies": {
"@babel/register": "7.17.7",
"@emotion/babel-preset-css-prop": "10.2.1",
"@storybook/addon-actions": "5.3.18",
"@storybook/react": "5.3.18",
"@testing-library/cypress": "7.0.7",
"@travi/any": "2.0.20",
"@travi/babel-preset": "3.0.41",
"@travi/eslint-config": "1.0.96",
"@travi/eslint-config-cypress": "1.0.36",
"@travi/eslint-config-mocha": "1.0.19",
"@travi/eslint-config-react": "1.0.53",
"babel-loader": "8.2.4",
"ban-sensitive-files": "1.9.18",
"c8": "7.12.0",
"chai": "4.3.7",
"commitlint-config-travi": "1.3.11",
"cross-env": "7.0.3",
"cypress": "6.9.1",
"cz-conventional-changelog": "3.3.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.5",
"husky": "8.0.3",
"lockfile-lint": "4.7.4",
"mocha": "9.2.2",
"npm-run-all": "4.1.5",
"remark-cli": "9.0.0",
"remark-preset-lint-travi": "1.3.11",
"rimraf": "3.0.2",
"rollup": "2.70.1",
"rollup-plugin-auto-external": "2.0.0",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-node-resolve": "5.2.0",
"sinon": "9.2.4",
"start-server-and-test": "1.14.0"
}
}