-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.58 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
{
"name": "regular-expression-validation",
"version": "1.0.0",
"description":
"Regular expressions wrapped in functions for basic validation - in client and the server.",
"types": "/lib/typings",
"repository": {
"type": "git",
"url": "git@github.com:MathiasKandelborg/Regular-Expressions.git"
},
"keywords": [
"regularExpressions",
"regexp",
"RegExp",
"validation",
"validator"
],
"author": "Mathias <mathias@kandelborg.dk>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MathiasKandelborg/Regular-Expressions/issues"
},
"browserslist": [">1%", "last 4 versions", "Firefox ESR", "not ie < 9"],
"scripts": {
"start": "parcel index.html -d parcelDev/",
"storybook": "start-storybook -p 4321",
"build": "parcel build index.html -d build/dist/parcel",
"build-dev": "parcel build index.html -d build/dev/parcel --public-url ./",
"build-storybook": "build-storybook"
},
"devDependencies": {
"@storybook/addon-a11y": "^3.3.15",
"@storybook/addon-actions": "^3.3.15",
"@storybook/addon-backgrounds": "^3.3.15",
"@storybook/addon-info": "^3.3.15",
"@storybook/addon-knobs": "^3.3.15",
"@storybook/addon-links": "^3.3.15",
"@storybook/addon-storysource": "^3.4.0-alpha.8",
"@storybook/addons": "^3.3.15",
"@storybook/react": "^3.3.15",
"@types/node": "^9.6.0",
"@types/react": "^16.0.41",
"@types/react-dom": "^16.0.4",
"@types/storybook__addon-actions": "^3.0.3",
"@types/storybook__addon-backgrounds": "^3.2.0",
"@types/storybook__addon-info": "^3.2.2",
"@types/storybook__addon-links": "^3.3.0",
"@types/storybook__react": "^3.0.7",
"autoprefixer": "^8.1.0",
"awesome-typescript-loader": "^4.0.1",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-react-inline-elements": "^6.22.0",
"babel-plugin-transform-typescript": "^7.0.0-alpha.19",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-import-resolver-node": "^0.3.2",
"eslint-plugin-css-modules": "^2.7.5",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
"jsdoc": "^3.5.5",
"material-ui": "^1.0.0-beta.38",
"material-ui-next-types": "^1.0.0",
"mdi-material-ui": "^3.2.0",
"parcel-bundler": "latest",
"parcel-plugin-typescript": "^0.7.0",
"pixrem": "^4.0.1",
"pleeease-filters": "^4.0.0",
"postcss": "^6.0.20",
"postcss-calc": "^6.0.1",
"postcss-color-function": "^4.0.1",
"postcss-custom-media": "^6.0.0",
"postcss-custom-properties": "^7.0.0",
"postcss-custom-selectors": "^4.0.1",
"postcss-flexbugs-fixes": "^3.3.0",
"postcss-import": "^11.1.0",
"postcss-media-minmax": "^3.0.0",
"postcss-nested": "^3.0.0",
"postcss-nesting": "^4.2.1",
"postcss-pseudoelements": "^5.0.0",
"postcss-selector-matches": "^3.0.1",
"postcss-selector-not": "^3.0.1",
"prettier": "^1.11.1",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-jss": "^8.3.5",
"stylelint": "^9.1.3",
"stylelint-config-standard": "^18.2.0",
"stylelint-order": "^0.8.1",
"tslint-config-prettier": "^1.10.0",
"typeface-roboto": "^0.0.54",
"typescript": "^2.7.2"
}
}