-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.02 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.02 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "cbushints.com",
"description": "",
"version": "1.0.0",
"homepage": "https://cbushints.com",
"author": "Matthew Miller <matthew@mi11er.net> (https://mi11er.net)",
"contributors": [
"Jonathan Briehl"
],
"license": "UNLICENSED",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/cbushints/cbushints.com.git"
},
"bugs": {
"url": "https://github.com/cbushints/cbushints.com/issues"
},
"scripts": {
"build": "babel-node lib/build.js --buildOnly",
"clean": "rimraf dist firebase-debug.log npm-debug.log",
"deploy": "run-s lint clean 'build -- --production' deploy:firebase",
"deploy:firebase": "firebase deploy",
"lint": "run-p lint:*",
"lint:js": "eslint --ignore-path .gitignore --fix .",
"lint:firebase.json": "jsonlint -i firebase.json",
"lint:package.json": "jsonlint -i package.json",
"start": "babel-node lib/build.js"
},
"dependencies": {
"babel-cli": "6.24.1",
"babel-core": "6.24.1",
"babel-loader": "7.0.0",
"babel-preset-env": "1.4.0",
"browser-sync": "2.18.8",
"commitizen": "2.9.6",
"css-loader": "0.28.1",
"cz-conventional-changelog": "2.0.0",
"eslint": "3.19.0",
"eslint-config-airbnb-base": "11.1.3",
"eslint-plugin-import": "2.2.0",
"extract-text-webpack-plugin": "2.1.0",
"firebase-tools": "3.7.0",
"jsonlint": "1.6.2",
"metalsmith": "2.3.0",
"metalsmith-layouts": "1.8.1",
"minimist": "1.2.0",
"modernizr": "3.5.0",
"modernizr-loader": "1.0.1",
"node-sass": "4.5.2",
"npm-run-all": "4.0.2",
"picnic": "6.3.2",
"pug": "2.0.0-rc.1",
"queue": "4.2.1",
"rimraf": "2.6.1",
"sass-loader": "6.0.3",
"webpack": "2.5.0",
"webpack-merge": "4.1.0"
},
"devDependencies": {},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
]
]
}
}