-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.75 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
{
"name": "@travi/admin.travi.org-components",
"version": "0.0.0-semantically-released",
"description": "React components for https://admin.travi.org",
"scripts": {
"clean": "rimraf dist/ lib/",
"copy:scss": "cpy '**/*.scss' '../lib/' --parents --cwd=src/",
"lint:md": "globstar --node -- markdownlint **/*.md",
"lint:js": "eslint . .storybook --cache",
"lint:sass": "sass-lint src/**/*.scss",
"test": "npm-run-all --print-label --parallel lint:* --parallel test:* --sequential build",
"test:unit": "nyc run-s test:unit:base",
"test:unit:base": "mocha --recursive test/unit --require @babel/register --require ./test/helpers/mocha-setup.js",
"test:integration": "mocha stories/ --require @babel/register --require .storybook/mocha-config.js",
"coverage:report": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"start": "start-storybook -p 9002",
"prebuild": "run-s clean",
"build": "npm-run-all --print-label --parallel build:* copy:scss",
"build:js": "rollup -c",
"build:storybook": "build-storybook -o dist/storybook --quiet",
"prepack": "run-s build",
"semantic-release": "semantic-release",
"prepare": "husky install"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/travi-org/admin.travi.org-components.git"
},
"keywords": [
"react",
"storybook",
"components"
],
"author": "Matt Travi <[email protected]> (https://matt.travi.org/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/travi-org/admin.travi.org-components/issues"
},
"homepage": "https://github.com/travi-org/admin.travi.org-components#readme",
"main": "lib/components.cjs.js",
"module": "lib/components.es.js",
"devDependencies": {
"@babel/register": "7.24.6",
"@storybook/addon-actions": "5.3.21",
"@storybook/addon-info": "3.4.12",
"@storybook/addon-links": "5.3.21",
"@storybook/react": "5.3.21",
"@travi/any": "3.1.2",
"@travi/babel-preset": "3.0.127",
"@travi/eslint-config-travi": "1.8.8",
"babel-loader": "8.3.0",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"babel-plugin-transform-require-ignore": "0.1.1",
"chai": "4.4.1",
"cheerio": "1.0.0-rc.12",
"codecov": "3.8.3",
"commitlint-config-travi": "1.4.50",
"cpy-cli": "5.0.0",
"css-loader": "5.2.7",
"cz-conventional-changelog": "3.3.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.8",
"file-loader": "6.2.0",
"glob": "9.3.5",
"globstar": "1.0.0",
"husky": "8.0.3",
"jsdom": "21.1.2",
"markdownlint-cli": "0.39.0",
"mocha": "10.4.0",
"node-sass": "8.0.0",
"npm-run-all2": "5.0.2",
"nyc": "15.1.0",
"prop-types": "15.8.1",
"react": "16.10.1",
"react-addons-test-utils": "15.6.2",
"react-dom": "16.2.1",
"react-helmet": "6.1.0",
"react-test-renderer": "16.10.1",
"rimraf": "4.4.1",
"rollup": "2.79.1",
"rollup-plugin-babel": "4.4.0",
"sass-lint": "1.13.1",
"sass-loader": "10.5.2",
"storybook-addon-specifications": "2.2.0",
"storybook-router": "0.3.4",
"style-loader": "2.0.0",
"url-loader": "4.1.1",
"webpack-hot-middleware": "2.26.1"
},
"dependencies": {
"@travi/travi.org-theme": "0.2.0",
"bootstrap-sass": "^3.4.1",
"material-ui": "0.20.2",
"microformat-node": "2.0.4",
"react-bootstrap": "0.32.1",
"react-router": "^3.2.0",
"react-router-bootstrap": "^0.23.2",
"react-tap-event-plugin": "^3.0.3"
},
"peerDependencies": {
"prop-types": "^15.5.10",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-helmet": "^5.1.3 || ^6.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}