-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.65 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
{
"name": "sailor-icons-site",
"version": "0.1.0",
"main": "src/js/index.js",
"description": "website for sailor icons",
"homepage": "https://sailoricons.github.io/sailor-icons-site/",
"bugs": "https://github.com/sailoricons/sailor-icons-site/issues",
"repository": {
"type": "git",
"url": "https://github.com/sailoricons/sailor-icons-site.git"
},
"license": "Apache-2.0",
"scripts": {
"start": "webpack-dev-server --mode development --open",
"build": "cross-env NODE_ENV=production webpack --mode production",
"lint": "eslint src",
"generate-html": "cross-env NODE_ENV=ssr babel-node ./tools/generate-html",
"release-gh-pages": "cross-env NODE_ENV=ssr babel-node ./tools/release-gh-pages"
},
"dependencies": {
"grommet": "https://github.com/grommet/grommet/tarball/stable",
"grommet-icons": "4.3.0",
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-sailor-icons": "1.0.1",
"styled-components": "^4.0.0"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@emotion/core": "^10.0.0-beta.6",
"@storybook/addon-options": "4.0.2",
"@storybook/addon-storysource": "4.0.2",
"@storybook/addons": "4.0.2",
"@storybook/react": "4.0.2",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"babel-plugin-styled-components": "^1.8.0",
"copy-webpack-plugin": "^4.5.3",
"cross-env": "^5.2.0",
"deep-assign": "^2.0.0",
"eslint": "^6.0.1",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-parallel": "^1.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.8.2",
"fs-extra": "^7.0.0",
"html-minifier": "^3.5.20",
"pre-commit": "^1.2.2",
"react-dev-utils": "^6.0.5",
"react-test-renderer": "^16.5.2",
"simple-git": "^1.105.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9",
"write-file-webpack-plugin": "^4.4.1"
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"lcov"
],
"collectCoverageFrom": [
"src/**/*.{js}"
],
"modulePathIgnorePatterns": [
"<rootDir>/dist/",
"<rootDir>/templates/"
],
"testPathIgnorePatterns": [
"<rootDir>[/\\\\](dist|templates|node_modules)[/\\\\]"
]
},
"pre-commit": [
"lint"
]
}