-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 1.9 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "husky-cms",
"private": true,
"version": "1.2.0",
"description": "Generate a website from the contents of your favourite Trello board",
"repository": "unplatform/husky-cms",
"author": "robb-j",
"license": "MIT",
"scripts": {
"coverage": "jest --coverage",
"lint": "eslint src",
"prettier": "prettier --write '**/*.{js,json,css,md,ts,tsx}'",
"postversion": "node tools/buildAndPush.js latest",
"start": "node server",
"test": "jest",
"build": "parcel build app/projects.js app/theme.sass",
"dev": "node tools/dev.js",
"gen-readme-toc": "md-toc -i"
},
"keywords": [],
"dependencies": {
"@babel/polyfill": "^7.6.0",
"@koa/cors": "^3.0.0",
"async-redis": "^1.1.7",
"axios": "^0.18.1",
"bulma": "^0.7.5",
"bulma-timeline": "^3.0.4",
"casex": "^3.0.0",
"dayjs": "^1.8.16",
"dotenv": "^8.1.0",
"koa": "^2.8.2",
"koa-json": "^2.0.2",
"koa-mount": "^4.0.0",
"koa-router": "^7.4.0",
"koa-send": "^5.0.0",
"koa-static": "^5.0.0",
"marked": "^0.7.0",
"pug": "^2.0.4",
"valid-env": "^1.0.0"
},
"devDependencies": {
"@robb_j/md-toc": "^0.3.0",
"babel-core": "^6.26.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^6.5.0",
"eslint-config-prettier": "^6.3.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^24.9.0",
"nodemon": "^1.19.3",
"parcel-bundler": "^1.12.4",
"sass": "^1.22.12"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md,ts,tsx}": [
"prettier --write",
"git add"
]
}
}