-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.33 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.33 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
77
78
79
80
81
{
"name": "split-panel-react",
"main": "lib/index.js",
"version": "1.0.6",
"author": "bnbarak",
"homepage": "https://github.com/bnbarak/split-panel",
"scripts": {
"storybook": "start-storybook -p 6006",
"test": "./node_modules/jest/bin/jest.js",
"test:watch": "./node_modules/jest/bin/jest.js --watch",
"build-storybook": "build-storybook",
"build:prod": "./node_modules/.bin/webpack --mode=production",
"build:dev": "webpack --mode=development",
"prettier": "./node_modules/prettier/bin-prettier.js --write \"src/**/*.js\"",
"deply-docs": "./node_modules/@storybook/storybook-deployer/bin/storybook_to_ghpages",
"prepublish": "npm run test && npm run prettier && npm run build:prod && npm run deply-docs"
},
"dependencies": {
"lodash": "^4.17.19",
"react": "^16.9.0",
"react-resize-detector": "^4.2.0",
"styled-components": "^4.3.2"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.5.4",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.4.4",
"@emotion/core": "^10.0.14",
"@storybook/addon-actions": "^5.1.11",
"@storybook/addon-links": "^5.1.11",
"@storybook/addons": "^5.1.11",
"@storybook/react": "^5.1.11",
"@storybook/storybook-deployer": "^2.8.1",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-plugin-webpack-alias": "^2.1.2",
"babel-plugin-webpack-aliases": "^1.1.3",
"chai": "^4.2.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"husky": "^3.0.0",
"jest": "^24.9.0",
"jsdom": "^15.1.1",
"mocha": "^6.2.0",
"prettier": "1.18.2",
"prop-types": "^15.7.2",
"react-json-pretty": "^2.1.0",
"sinon": "^7.4.2",
"webpack": "^4.36.1",
"webpack-bundle-analyzer": "^3.4.1",
"webpack-cli": "^3.3.6",
"webpack-merge": "^4.2.2"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties",
[
"babel-plugin-webpack-aliases",
{
"config": "./webpack.config.js"
}
]
]
},
"husky": {
"hooks": {
"pre-push": "npm run test"
}
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>test/helpers/enzyme.js"
]
}
}