-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.35 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
{
"name": "place-components",
"version": "0.1.0",
"repository": "[email protected]:eshavrov/place-components.git",
"private": true,
"scripts": {
"start": "concurrently --kill-others \"yarn start:images\" \"yarn dev\"",
"start:images": "node serverImages/server.js",
"dev": "yarn run storybook",
"build": "yarn run build-storybook",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public",
"lint": "yarn run lint:js && yarn run lint:css",
"lint:js": "eslint --ext .js **/src/**/*.js",
"lint:css": "stylelint **/*.js",
"test": "jest --passWithNoTests"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"dependencies": {
"@place-app/constants.ui": "^0.1.0",
"@place-app/icon.component": "^0.1.0",
"@place-app/image.component": "^0.1.0",
"express": "^4.16.4",
"lodash.isequal": "^4.5.0",
"lodash.isnil": "^4.0.0",
"lodash.omit": "^4.5.0",
"react": "16.8.1",
"react-dom": "16.8.1",
"react-ink": "^6.4.0",
"react-input-mask": "^2.0.4",
"sharp": "^0.21.3",
"styled-components": "4.1.3",
"svg-sprite-injector": "^1.0.0",
"svg-sprite-loader": "^4.1.3",
"swiper": "^4.4.6"
},
"devDependencies": {
"@babel/core": "7.2.2",
"@babel/plugin-proposal-class-properties": "7.3.0",
"@babel/preset-env": "7.3.1",
"@babel/preset-react": "7.0.0",
"@storybook/addon-actions": "4.1.11",
"@storybook/addon-links": "4.1.11",
"@storybook/react": "4.1.11",
"babel-eslint": "10.0.1",
"babel-loader": "8.0.5",
"babel-runtime": "6.26.0",
"babel7-jest": "1.0.1",
"concurrently": "^4.1.0",
"css-loader": "2.1.0",
"eslint": "5.13.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "4.0.0",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-react": "7.12.4",
"husky": "1.3.1",
"jest": "24.1.0",
"lint-staged": "8.1.3",
"prettier": "1.16.4",
"prettier-eslint": "8.8.2",
"prettier-eslint-cli": "4.7.1",
"prop-types": "15.7.1",
"stylelint": "9.10.1",
"stylelint-config-recommended": "2.1.0",
"stylelint-config-styled-components": "0.1.1",
"stylelint-processor-styled-components": "1.5.2",
"webpack": "4.29.3"
}
}