forked from timber/starter-theme
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.24 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
{
"name": "timber-starter-theme",
"version": "0.0.1",
"description": "Timber Starter Theme Sassy SaSS",
"authors": [
"John Ouellet <[email protected]>"
],
"license": "MIT",
"devDependencies": {
"@lodder/grunt-postcss": "^3.0.1",
"autoprefixer": "^10.2.5",
"grunt": "^1.4.0",
"grunt-contrib-concat": "latest",
"grunt-contrib-cssmin": "^4.0.0",
"grunt-contrib-uglify": "4.0.0",
"grunt-contrib-watch": "latest",
"grunt-sass": "2.0.0",
"postcss": "^8.2.15"
},
"browserslist": [
"last 1 major version",
">= 1%",
"Chrome >= 45",
"Firefox >= 38",
"Edge >= 12",
"Explorer >= 10",
"iOS >= 9",
"Safari >= 9",
"Android >= 4.4",
"Opera >= 30"
],
"dependencies": {
"bootstrap": "^4.6.0",
"jquery": "^3.6.0",
"load-grunt-tasks": "4.0.0",
"popper.js": "^1.12.9"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"preinstall": "rm -rf assets/style/bootstrap/ && rm -rf assets/js/bootstrap.js && rm -rf assets/js/popper.js",
"postinstall": "cp -r node_modules/bootstrap/scss/. assets/style/bootstrap/ && cp -r node_modules/bootstrap/dist/js/bootstrap.js assets/js/ && cp -r node_modules/popper.js/dist/umd/popper.js assets/js/"
}
}