-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.39 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.39 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
{
"name": "kerckhoff",
"version": "0.0.0-dev",
"description": "A static site manager for the Daily Bruin",
"main": "index.js",
"scripts": {
"precommit": "lint-staged",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"debug": "webpack -v",
"watch": "webpack --watch",
"profile": "webpack --profile --json > stats.json"
},
"lint-staged": {
"*.(js|vue)": [
"prettier --write",
"git add"
]
},
"author": "Daily Bruin",
"license": "MIT",
"devDependencies": {
"babel-core": "6.26.3",
"babel-loader": "7.1.4",
"babel-preset-env": "1.7.0",
"css-loader": "0.28.11",
"eslint": "4.19.1",
"eslint-config-prettier": "2.9.0",
"husky": "0.14.3",
"lint-staged": "4.3.0",
"node-sass": "4.9.0",
"prettier": "1.12.1",
"react": "15.6.2",
"sass-loader": "6.0.7",
"style-loader": "0.18.2",
"vue-loader": "14.2.2",
"vue-template-compiler": "2.5.16",
"webpack": "4.8.3",
"webpack-bundle-tracker": "0.2.1",
"webpack-cli": "2.1.3"
},
"dependencies": {
"axios": "0.18.0",
"babel": "6.23.0",
"bootstrap": "4.1.1",
"bootstrap-vue": "2.0.0-rc.10",
"front-matter": "2.3.0",
"gray-matter": "3.1.1",
"js-cookie": "2.2.0",
"marked": "0.3.19",
"vue": "2.5.16",
"vue-awesome": "2.3.5",
"vue-router": "2.8.1",
"vue-upload-component": "2.8.5"
}
}