-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.73 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.73 KB
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
{
"name": "@posten/hedwig-react",
"homepage": "http://bring.github.io/hedwig-react",
"version": "0.6.17",
"description": "Hedwig react components",
"author": "Posten",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bring/hedwig-react"
},
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.js",
"engines": {
"node": ">=14.17.4",
"npm": ">=7"
},
"scripts": {
"build": "microbundle-crl --no-compress --format modern,cjs",
"start": "microbundle-crl watch --no-compress --format modern,cjs",
"prepare": "run-s build",
"test": "run-s test:unit test:lint test:build",
"test:build": "run-s build",
"test:lint": "eslint .",
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"deploy": "gh-pages -d example/build",
"storybook-posten": "STORYBOOK_THEME=posten start-storybook -p 6006",
"storybook-bring": "STORYBOOK_THEME=bring start-storybook -p 6006",
"build-storybook": "build-storybook",
"predeploy-storybook": "npm run build-storybook",
"deploy-storybook": "gh-pages -d storybook-static"
},
"peerDependencies": {
"react": ">=16.14.x"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@storybook/addon-actions": "^6.3.6",
"@storybook/addon-docs": "^6.3.6",
"@storybook/addon-essentials": "^6.3.6",
"@storybook/addon-links": "^6.3.6",
"@storybook/react": "^6.3.6",
"@whitespace/storybook-addon-html": "^2.0.1",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.2.2",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-config-standard-react": "^11.0.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.24.0",
"gh-pages": "^2.2.0",
"microbundle-crl": "^0.13.10",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"react-scripts": "^4.0.3"
},
"files": [
"dist"
],
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/pro-light-svg-icons": "^5.15.4",
"@fortawesome/pro-regular-svg-icons": "^5.15.4",
"@fortawesome/pro-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.15",
"@storybook/addon-a11y": "^6.3.6",
"@storybook/addon-cssresources": "^6.2.9"
}
}