-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
135 lines (135 loc) · 3.72 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "ninja-ui",
"version": "0.0.1",
"description": "Design System for browsers, server side rendering or mobile",
"main": "index.js",
"scripts": {
"test": "jest",
"dev": "start-storybook -p 6006 -s public",
"start": "npm run dev",
"clean": "rm -rf build",
"build": "build-storybook -s public",
"build:npm": "node tools/buildNPM",
"build:docs": "build-storybook -s public --docs",
"preinstall": "node ./preinstall-script.js",
"lint": "npm run lint:js && npm run lint:css",
"lint:css": "stylelint src/**/*.js",
"lint:js": "npm run lint:eslint -- src",
"lint:eslint": "eslint --ignore-path .gitignore -- src",
"lint:eslint:fix": "eslint --ignore-path .gitignore --fix -- src",
"lint:staged": "lint-staged",
"prettier": "prettier \"*/**/*.{js,jsx,json,css,scss}\" --ignore-path ./.prettierignore --write && git status",
"release": "auto shipit"
},
"keywords": [
"design",
"system",
"ninja",
"ui",
"reactjs",
"react",
"react-native",
"npm"
],
"author": "Francesc Jimenez",
"license": "ISC",
"engines": {
"npm": ">=5",
"node": ">=8.15.1 <11.0.0"
},
"root": true,
"lint-staged": {
"src/*.js": [
"npm run lint:eslint:fix",
"git add --force"
],
"src/*.{json,md}": [
"prettier --write",
"git add --force"
]
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"peerDependencies": {
"react": "16.13.1",
"react-dom": "16.13.1"
},
"dependencies": {
"@babel/cli": "7.8.4",
"@styled-system/css": "5.1.5",
"dotenv": "8.2.0",
"handlebars": "4.7.3",
"i18n": "0.8.6",
"prop-types": "15.7.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-scripts": "3.4.1",
"react-widgets": "4.5.0",
"styled-components": "5.0.1",
"styled-system": "5.1.5"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-transform-runtime": "7.9.0",
"@babel/preset-env": "7.9.0",
"@babel/preset-react": "7.9.0",
"@babel/compat-data": "7.9.0",
"@storybook/addon-a11y": "5.3.18",
"@storybook/addon-actions": "5.3.18",
"@storybook/addon-docs": "5.3.18",
"@storybook/addon-knobs": "5.3.18",
"@storybook/addon-links": "5.3.18",
"@storybook/addon-viewport": "5.3.18",
"@storybook/addons": "5.3.18",
"@storybook/preset-create-react-app": "2.1.1",
"@storybook/react": "5.3.18",
"@storybook/theming": "5.3.18",
"@svgr/rollup": "5.3.0",
"@svgr/webpack": "5.3.0",
"auto": "9.22.1",
"babel-plugin-inline-react-svg": "1.1.1",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.1.0",
"eslint-config-prettier": "6.10.1",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-react": "7.19.0",
"eslint-plugin-react-hooks": "3.0.0",
"husky": "4.2.3",
"lint-staged": "10.0.9",
"mjml": "4.6.2",
"prettier": "2.0.2",
"rollup": "2.2.0",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-svg": "2.0.0",
"stylelint": "13.2.1",
"stylelint-config-recommended": "3.0.0",
"stylelint-config-styled-components": "0.1.1",
"stylelint-processor-styled-components": "1.10.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"resolutions": {
"@babel/preset-env": "7.8.3"
}
}