forked from jakezatecky/react-checkbox-tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 4.07 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
{
"name": "newton-checkbox-tree",
"version": "1.0.0",
"license": "MIT",
"types": "./src/index.d.ts",
"main": "./es/index.js",
"module": "./es/index.js",
"files": [
"dist",
"lib",
"es",
"src/scss"
],
"scripts": {
"clean": "yarn clean:dist && yarn clean:demo && yarn clean:build",
"clean:dist": "rm -rf ./dist",
"clean:demo": "rm -rf ./example/dist",
"clean:build": "rm -rf ./build",
"start-demo": "parcel example/src/index.html --out-dir example/dist --open",
"build-demo": "parcel build example/src/index.html --out-dir example/dist --public-url ./",
"publish-demo": "gh-pages -d example/dist",
"view-source-map": "source-map-explorer --html dist/CheckboxTree.js dist/CheckboxTree.js.map > source.html && open source.html",
"build": "webpack && yarn bundle",
"bundle": "babel src -q -d dist --ignore 'src/demo/*','src/stories/*','src/test/*'",
"start:dev": "./node_modules/.bin/parcel ./src/demo/index.dev.html --open",
"start:prod": "./node_modules/.bin/parcel ./src/demo/index.prod.html --open",
"start:examples:basic": "./node_modules/.bin/parcel ./src/demo/pages/basic/index.html",
"start:examples:clickable-labels": "./node_modules/.bin/parcel ./src/demo/pages/clickable-labels/index.html",
"start:examples:custom-icons": "./node_modules/.bin/parcel ./src/demo/pages/custom-icons/index.html",
"start:examples:disabled": "./node_modules/.bin/parcel ./src/demo/pages/disabled/index.html",
"start:examples:expand-all": "./node_modules/.bin/parcel ./src/demo/pages/expand-all/index.html",
"start:examples:hidden-checkboxes": "./node_modules/.bin/parcel ./src/demo/pages/hidden-checkboxes/index.html",
"start:examples:large-data": "./node_modules/.bin/parcel ./src/demo/pages/large-data/index.html",
"start:examples:no-cascade": "./node_modules/.bin/parcel ./src/demo/pages/no-cascade/index.html",
"start:examples:pessimistic-toggle": "./node_modules/.bin/parcel ./src/demo/pages/pessimistic-toggle/index.html",
"test": "jest",
"test:watch": "jest --watch",
"test:details": "jest --verbose",
"test:coverage": "jest --coverage --colors",
"test:snapshot:cleanup": "yarn run test:details -u",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.0.0-0",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-object-rest-spread": "^7.3.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@storybook/addon-actions": "^5.0.1",
"@storybook/addon-knobs": "^5.0.1",
"@storybook/addon-links": "^5.0.1",
"@storybook/addons": "^5.0.1",
"@storybook/react": "^5.0.1",
"@types/react": "^16.4.13",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.3.1",
"babel-loader": "^8.0.5",
"babel-register": "^6.26.0",
"chai": "^4.0.0",
"connect-history-api-fallback": "^1.6.0",
"css-loader": "^2.1.1",
"enzyme": "^3.0.0",
"enzyme-adapter-react-16": "^1.0.0",
"gh-pages": "^2.0.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.3.1",
"jsdom": "^13.1.0",
"koa-connect": "^2.0.1",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"parcel-bundler": "^1.6.2",
"sass-loader": "^7.1.0",
"source-map-explorer": "^1.7.0",
"style-loader": "^0.23.1",
"webpack": "^4.4.1",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1",
"webpack-node-externals": "^1.6.0",
"webpack-stream": "^5.0.0"
},
"dependencies": {
"classnames": "^2.2.5",
"lodash": "^4.17.10",
"nanoid": "^2.0.0",
"prop-types": "^15.5.8",
"react": "^16.8.0",
"react-dom": "^16.8.0"
}
}