-
Notifications
You must be signed in to change notification settings - Fork 240
/
Copy pathpackage.json
47 lines (47 loc) · 1.29 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
{
"name": "PedalPlayground",
"version": "1.0.0",
"description": "A site to help you arrange pedals",
"main": "gulpfile.js",
"devDependencies": {
"gulp": "^4.0.2"
},
"scripts": {
"start": "npm-run-all --parallel watch serve",
"build:sass": "sass --no-source-map app/stylesheets:public/stylesheets",
"watch:sass": "sass --no-source-map --watch app/stylesheets:public/stylesheets",
"watch": "npm-run-all --parallel watch:*",
"serve": "browser-sync start --files app public --server ",
"build": "npm-run-all build:*",
"postbuild": "postcss public/stylesheets/*.css -u autoprefixer cssnano -r --no-map"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PedalPlayground/pedalplayground.git"
},
"keywords": [
"gulp",
"scss",
"front",
"end"
],
"author": "Travis Lehman",
"license": "ISC",
"bugs": {
"url": "https://github.com/PedalPlayground/pedalplayground/issues"
},
"homepage": "https://github.com/PedalPlayground/pedalplayground#readme",
"dependencies": {
"autoprefixer": "^10.4.2",
"bootstrap-colorpicker": "^2.5.2",
"bootstrap-sass": "^3.4.1",
"browser-sync": "^2.27.7",
"copyfiles": "^2.4.1",
"cssnano": "^5.0.17",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"postcss-cli": "^9.1.0",
"sass": "^1.49.8",
"select2": "^4.1.0-rc.0"
}
}