-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.79 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
{
"name": "noders-website",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "yarn lint && preact test",
"start": "if-env NODE_ENV=production && yarn run -s serve || yarn run -s dev",
"pre-build": "eslint ./src",
"build": "preact build --template src/assets/template.html",
"build:pre-render": "preact build",
"serve": "preact build --template src/assets/template.html && preact serve",
"dev": "preact watch",
"lint": "eslint src",
"deploy": "gh-pages -d build",
"deploy:staging": "gh-pages -d build -b gh-pages-staging",
"headers": "cp src/_headers build/_headers",
"yolo": "yarn build && yarn headers && yarn deploy",
"yolo:staging": "yarn build && yarn headers && yarn deploy:staging",
"precommit": "lint-staged"
},
"lint-staged": {
"src/**/*.{js,jsx,json,css,md}": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"babel-eslint": "8.0.3",
"bulma": "0.6.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard-preact": "^1.1.6",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-standard": "^3.0.1",
"eslint": "^4.12.1",
"font-awesome": "^4.7.0",
"gh-pages": "^1.1.0",
"husky": "^0.14.3",
"if-env": "^1.0.0",
"intersection-observer": "^0.5.0",
"less-loader": "^4.0.5",
"less": "^2.7.3",
"lint-staged": "^7.0.0",
"preact-cli": "^2.1.0",
"preact-compat": "^3.17.0",
"preact-router": "^2.6.0",
"preact": "^8.2.6",
"prettier": "^1.11.1"
}
}