-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
46 lines (46 loc) · 1.54 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
{
"name": "apprentice-at",
"version": "0.0.1",
"description": "An online listing of apprenticeship opportunities.",
"scripts": {
"autoprefix": "postcss dist/assets/css/style.css -u autoprefixer -d dist/assets/css",
"build": "run-s clean:all sass:build copy:public concat:js eleventy autoprefix",
"clean:all": "rm -rf dist/*",
"copy:public": "cp -r public/* dist/",
"concat:js": "cat source/js/*.js > dist/assets/js/scripts.js",
"eleventy": "eleventy",
"eleventy:watch": "eleventy --watch",
"js:watch": "watch 'npm run concat:js' ./source/js",
"serve": "mkdir -p dist && touch dist/index.html && cd dist && browser-sync --no-notify --files \"**/*\"",
"start": "run-p build sass:watch eleventy:watch js:watch serve",
"sass:build": "sass source/scss:dist/assets/css",
"sass:watch": "npm run sass:build -- --watch",
"test": "cypress open",
"test:ci": "cypress run"
},
"repository": {
"type": "git",
"url": "https://github.com/sparkbox/apprentice-at.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/sparkbox/apprentice-at/issues"
},
"homepage": "https://github.com/sparkbox/apprentice-at",
"dependencies": {
"autoprefixer": "^10.4.2",
"handlebars-helpers": "^0.10.0",
"postcss": "^8.4.6",
"postcss-cli": "^9.1.0",
"sass": "^1.49.7"
},
"devDependencies": {
"@11ty/eleventy": "^1.0.0",
"browser-sync": "^2.27.7",
"cypress": "^9.4.1",
"netlify-plugin-cypress": "^2.2.0",
"npm-run-all": "^4.1.5",
"watch": "^1.0.2"
}
}