-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.25 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
{
"name": "milligram-starter",
"version": "0.1.1",
"description": "A super simple boilerplate project with Milligram.",
"homepage": "https://milligram.io",
"repository": "milligram/milligram-starter",
"license": "MIT",
"author": "CJ Patoilo <[email protected]>",
"dependencies": {
"milligram": "latest"
},
"devDependencies": {
"bower": "^1.8.8",
"browser-sync": "^2.26.12",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"ncp": "^2.0.0",
"npm-run-all": "^4.1.5",
"onchange": "^7.0.2",
"prettier-standard": "^16.4.1",
"rimraf": "^3.0.2"
},
"scripts": {
"start": "run-p watch serve",
"build": "rimraf dist && ncp src dist && ncp bower_components dist/lib",
"watch": "onchange src/* -- npm run build",
"serve": "browser-sync --no-notify start -s dist -f dist",
"test": "npm run build",
"lint": "prettier-standard --check",
"postinstall": "bower i",
"prestart": "npm i"
},
"engines": {
"node": "^12.18.0",
"npm": "^6.14.5"
},
"prettier": {
"jsxSingleQuote": false,
"trailingComma": "all"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": [
"prettier-standard --format",
"git add"
]
}
}