-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·50 lines (50 loc) · 1.31 KB
/
package.json
File metadata and controls
executable file
·50 lines (50 loc) · 1.31 KB
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
{
"name": "flatpage-template",
"version": "1.0.0",
"description": "A good starting point for developing flatpages.",
"main": "index.js",
"repository": "https://github.com/daily-bruin/flatpage-template.git",
"author": "Nathan Smith <nathan@nathansmith.io>",
"license": "MIT",
"scripts": {
"postcheckout": "yarn",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --single-quote --trailing-comma es5 --write",
"git add"
]
},
"devDependencies": {
"autoprefixer": "^7.1.2",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"browser-sync": "^2.18.13",
"del": "^3.0.0",
"eslint": "^4.5.0",
"eslint-config-uclaradio": "^1.0.8",
"file-system": "^2.2.2",
"gulp": "^3.9.1",
"gulp-csso": "^3.0.0",
"gulp-data": "^1.3.1",
"gulp-htmlmin": "^3.0.0",
"gulp-imagemin": "^3.3.0",
"gulp-nunjucks-render": "^2.2.1",
"gulp-postcss": "^7.0.0",
"gulp-sass": "^3.1.0",
"gulp-sourcemaps": "^2.6.1",
"gulp-uglify": "^3.0.0",
"htmlhint": "^0.9.13",
"husky": "^0.14.3",
"lint-staged": "^4.0.3",
"prettier": "^1.5.3",
"webpack-stream": "^4.0.0"
},
"dependencies": {
"google-spreadsheet": "^2.0.4",
"jquery-scrollify": "^1.0.19"
}
}