-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.5 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
{
"name": "photo-site",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "npm-run-all test:*",
"test:html": "globstar nu-html-checker *.html",
"init-project": "npm install && npm-run-all init:*",
"init:dirs": "mkdirp sass css vendor images js",
"init:files": "touch README.md index.html sass/style.scss js/script.js",
"init:gitignore": "curl https://raw.githubusercontent.com/github/gitignore/master/Node.gitignore -o .gitignore",
"build": "npm-run-all build:* test",
"build:clean": "rimraf css/*.css",
"build:sass": "node-sass --output-style compact -o css sass",
"build:autoprefixer": "autoprefixer-cli css/style.css",
"build-dev:sass": "node-sass --output-style expanded --source-map true -o css sass",
"watch": "npm-run-all build -p watch:*",
"watch:sass": "node-sass --output-style expand --source-map true -o css sass --watch",
"watch:autoprefixer": "onchange -d 100 css/style.css -- autoprefixer-cli -o css/style.prefixed.css css/style.css",
"watch:browser-sync": "browser-sync start -s -w -reload-delay 10 -f css/*.css *.html"
},
"keywords": [],
"author": "pk",
"license": "ISC",
"description": "",
"devDependencies": {
"autoprefixer-cli": "^1.0.0",
"globstar": "^1.0.0",
"grunt-browser-sync": "^2.2.0",
"npm-run-all": "^4.1.2",
"nu-html-checker": "^0.1.0"
},
"dependencies": {
"autoprefixer": "^8.0.0",
"bootstrap": "^4.0.0",
"jquery": "^3.3.1",
"popper.js": "^1.12.9",
"tether": "^1.4.3"
}
}