-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.55 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
{
"name": "ticket-creator-ui",
"private": true,
"description": "A simple UI to create tickets into some ticket managers like, freshdesk, zendesk, etc",
"version": "0.1.0",
"author": "Saikumar Vantaku",
"dependencies": {
"axios": "^0.21.1",
"bootstrap": "^4.4.1",
"gatsby": "^2.21.0",
"gatsby-plugin-sass": "^2.3.0",
"js-logger": "^1.6.0",
"node-sass": "^4.14.0",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-bootstrap": "^1.0.1",
"react-dom": "^16.12.0",
"react-helmet": "^6.0.0"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"husky": "^4.2.5",
"jest": "^25.3.0",
"lint-staged": "^10.1.3",
"prettier": "^2.0.4",
"ts-jest": "^25.3.1",
"tslint": "^6.1.1",
"tslint-etc": "^1.10.1",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"yarn checks"
],
"*.json": "prettier --write"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"test": "jest --runInBand --passWithNoTests",
"serve": "gatsby serve",
"start": "gatsby develop",
"build": "gatsby build",
"clean": "gatsby clean",
"format": "prettier --write \"**/*.{js,ts,jsx,json,md,graphql}\"",
"lint": "tslint --config tslint.json 'src/**/*.js'",
"checks": "yarn test && yarn lint && yarn format"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
}
}