-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
31 lines (31 loc) · 838 Bytes
/
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
{
"name": "bye-bye-bower",
"version": "1.0.0",
"description": "An example repository of approach how to migrate away from bower to npm packages",
"main": "app.js",
"author": "Andrejs Abrickis",
"license": "MIT",
"dependencies": {
"grunt": "^1.0.4",
"jquery": "^3.5.0",
"jquery-datetimepicker": "https://github.com/xdan/datetimepicker/archive/2.5.4.tar.gz",
"jquery-ui-dist": "^1.12.1",
"lodash": "^4.17.19"
},
"devDependencies": {
"copy-webpack-plugin": "^5.1.1",
"grunt-contrib-copy": "^1.0.0",
"rimraf": "^3.0.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"resolutions": {
"set-value": "^3.0.1"
},
"scripts": {
"build": "yarn clean && yarn webpack && yarn grunt",
"clean": "rimraf public_assets",
"grunt": "grunt",
"webpack": "webpack"
}
}