-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
102 lines (102 loc) · 3.3 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
{
"name": "@dsmjs/components",
"description": "React components for the dsmjs.com site",
"license": "MIT",
"version": "0.0.0-semantically-released",
"main": "lib/components.cjs.js",
"module": "lib/components.es.js",
"author": "dsmJS",
"maintainers": [
"Matt Travi <[email protected]> (https://matt.travi.org/)"
],
"repository": "dsmjs/components",
"bugs": "https://github.com/dsmjs/components/issues",
"homepage": "https://components.dsmjs.com/",
"scripts": {
"clean": "rimraf lib/",
"lint:md": "remark --frail .",
"lint:js": "eslint . .storybook/ --cache",
"lint:peer": "npm ls --production >/dev/null",
"tests:unit": "mocha 'src/**/*-test.js'",
"test": "npm-run-all --print-label --parallel lint:* --sequential coverage --parallel build build:storybook",
"coverage": "nyc run-s tests:unit",
"coverage:report": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"start": "start-storybook --port 6006 --ci",
"build:js": "rollup --config",
"build": "run-s clean build:*",
"build:storybook": "build-storybook --quiet",
"presnapshot": "ANY_SEED=452204917091.8763 run-s build:storybook",
"snapshot": "percy-storybook --widths=320,1280",
"predeploy:netlify": "run-s build:storybook",
"deploy:netlify": "netlify deploy --dir=./storybook-static",
"deploy:chromatic": "npx chromatic --build-script-name=build:storybook --exit-once-uploaded",
"prepack": "run-s build",
"prepare": "husky install"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public"
},
"files": [
"lib/"
],
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/register": "^7.6.2",
"@dsmjs/babel-preset": "1.0.58",
"@dsmjs/eslint-config": "1.0.101",
"@dsmjs/eslint-config-mocha": "1.0.24",
"@dsmjs/eslint-config-react": "1.1.67",
"@dsmjs/remark-preset-lint": "2.0.13",
"@emotion/babel-preset-css-prop": "^10.0.27",
"@percy/storybook": "4.1.0",
"@storybook/addon-actions": "^6.0.3",
"@storybook/addon-links": "^6.0.2",
"@storybook/react": "^6.0.3",
"@travi/any": "2.1.2",
"babel-loader": "^8.0.6",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"chai": "^4.2.0",
"codecov": "3.8.3",
"commitlint-config-dsmjs": "1.0.43",
"cz-conventional-changelog": "3.3.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.6",
"husky": "8.0.1",
"mocha": "10.0.0",
"netlify-cli": "^10.0.0",
"npm-run-all": "4.1.5",
"nyc": "^15.0.1",
"react": "^16.10.2",
"react-dom": "^17.0.2",
"remark": "^14.0.1",
"remark-cli": "^10.0.0",
"rollup": "^2.0.0",
"rollup-plugin-auto-external": "2.0.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-json": "4.0.0",
"rollup-plugin-node-resolve": "5.2.0",
"sinon": "^14.0.0",
"storybook-router": "0.3.4",
"validate-commit-msg": "2.14.0",
"webpack": "^4.41.1"
},
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"dependencies": {
"@emotion/core": "^10.0.27",
"gatsby-link": "^2.4.2",
"prop-types": "15.8.1",
"react-simple-icons": "^1.0.0-beta.5",
"react-use": "^17.0.1",
"remark-parse": "^10.0.0",
"remark-react": "^9.0.0",
"unified": "^10.1.0"
}
}