-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
56 lines (56 loc) · 1.64 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
48
49
50
51
52
53
54
55
56
{
"name": "asteroids",
"version": "4.0.0",
"description": "Space Nomads' web starter kit",
"main": "dist/index.html",
"devDependencies": {
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy": "^2.0.1",
"@hail2u/css-mqpacker": "github:hail2u/node-css-mqpacker",
"cross-env": "^7.0.3",
"eslint-config-recommended": "^4.1.0",
"eslint": "^6.8.0",
"gulp-autoprefixer": "^6.1.0",
"gulp-cli": "^3.0.0",
"gulp-if": "^3.0.0",
"gulp-minify": "^3.0.0",
"gulp-postcss": "^9.0.1",
"gulp-sass": "^5.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-zip": "^4.2.0",
"gulp": "^5.0.0",
"html-minifier": "^4.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.31",
"pre-commit": "^1.2.2",
"sass": "^1.55.0",
"stylelint-config-standard-scss": "^5.0.0",
"stylelint": "^14.13.0"
},
"bugs": {
"url": "https://github.com/spacenomads/Asteroids/issues"
},
"scripts": {
"build": "(npm run clean || true) && npm run build:assets && eleventy",
"build:pro": "cross-env MODE=pro npm run build",
"watch": "eleventy --watch",
"serve": "npm run clean && eleventy --serve",
"start": "cross-env MODE=dev npm-run-all --parallel watch:assets serve",
"watch:assets": "gulp go",
"build:assets": "gulp build",
"build:zip": "gulp zipit",
"clean": "rm -rf dist/*",
"debug": "DEBUG=* eleventy"
},
"browserslist": [
"last 2 versions",
"ie >= 10"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:spacenomads/Asteroids.git"
},
"author": "Space Nomads",
"license": "CC0-1.0",
"homepage": "https://github.com/spacenomads/Asteroids"
}