-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.12 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
{
"name": "pikobytes-react-datepicker",
"version": "1.0.15",
"description": "React date picker",
"main": "dist/main.js",
"files": [
"dist/"
],
"license": "MIT",
"scripts": {
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"start-build": "http-server ./build/ -a 0.0.0.0 -p 3001 --cors -S -C '.ssl/cert.pem' -K '.ssl/key.pem'",
"build-js": "react-scripts build",
"build": "npm-run-all build-css build-js",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pikobytes/pikobytes-react-datepicker.git"
},
"author": "Jacob Mendt <[email protected]>, Nicolas Looschen",
"bugs": {
"url": "https://github.com/pikobytes/pikobytes-react-datepicker/issues"
},
"homepage": "https://github.com/pikobytes/pikobytes-react-datepicker",
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/plugin-external-helpers": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.6.3",
"babel-eslint": "^7.2.3",
"babel-loader": "^8.0.6",
"babel-plugin-css-modules-transform": "^1.6.1",
"css-loader": "^3.2.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.16.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"http-server": "^0.11.1",
"node-sass-chokidar": "0.0.3",
"npm-run-all": "^4.1.2",
"react-scripts": "1.1.4",
"redux-mock-store": "^1.5.1",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9"
},
"dependencies": {},
"peerDependencies": {
"moment": "^2.23.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"prop-types": "^15.6.1"
}
}