-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.46 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
{
"name": "gatsby-orchardcore",
"version": "1.0.0",
"main": "index.js",
"types": "dist/index.d.ts",
"author": "jrestall (@james.restall)",
"license": "MIT",
"private": true,
"devDependencies": {
"@types/react": "^16.8.22",
"@types/react-dom": "^16.8.4",
"lerna": "^3.16.4",
"husky": "^2.3.0",
"lint-staged": "^8.1.7",
"prettier": "^1.17.1",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-loader": "^3.5.4",
"tslint-plugin-prettier": "^2.0.1",
"tslint-react": "^4.0.0",
"typescript": "^3.5.3"
},
"scripts": {
"build": "lerna run build",
"format": "prettier --write packages/**/*.{js,jsx,ts,tsx}",
"start": "yarn workspace site gatsby develop",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\"",
"type": "tsc --noEmit",
"lint": "tslint packages/**/*.{js,ts,tsx}"
},
"workspaces": [
"packages/*",
"example/*"
],
"husky": {
"hooks": {
"pre-commit": "yarn type && lint-staged && yarn format && git add ."
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": ["yarn run lint", "git add"]
},
"repository": {
"type": "git",
"url": "https://github.com/jrestall/gatsby-orchardcore.git"
},
"bugs": {
"url": "https://github.com/jrestall/gatsby-orchardcore/issues"
}
}