-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
44 lines (44 loc) · 1.41 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
{
"name": "appointment-picker",
"version": "2.0.0",
"description": "customizable timepicker widget compatible with jQuery, React & Angular",
"main": "src/appointment-picker.js",
"scripts": {
"uglify": "uglifyjs ./src/appointment-picker.js -c -m -o ./dist/appointment-picker.min.js",
"css": "node-sass src/appointment-picker.scss dist/appointment-picker.css",
"start": "webpack-dev-server --config ./webpack.config.js --mode development --open",
"build": "npm run uglify && npm run css && webpack -p --env=prod --config ./webpack.prod.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jannicz/appointment-picker.git"
},
"author": "Jan Suwart",
"license": "MIT",
"bugs": {
"url": "https://github.com/jannicz/appointment-picker/issues"
},
"homepage": "https://github.com/jannicz/appointment-picker#readme",
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"css-loader": "^2.1.1",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.9.2",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"style-loader": "^0.23.1",
"uglify-es": "^3.2.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.2.1"
},
"keywords": [
"appointments",
"appointment-scheduling",
"time",
"picker-library"
]
}