This repository has been archived by the owner on Jan 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.34 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
{
"name": "careertrek-hacktoberfest-day-2018",
"description": "Careertrek Hacktoberfest Day 2018",
"version": "1.0.0",
"author": "Chinu Cho <[email protected]>",
"dependencies": {
"@types/react-helmet": "^5.0.7",
"axios": "^0.18.0",
"gatsby": "^2.0.27",
"gatsby-plugin-manifest": "^2.0.5",
"gatsby-plugin-offline": "^2.0.5",
"gatsby-plugin-react-helmet": "^3.0.0",
"gatsby-plugin-typescript": "^2.0.0",
"gatsby-plugin-typography": "^2.2.0",
"react": "^16.5.1",
"react-dom": "^16.5.1",
"react-helmet": "^5.2.0",
"react-typography": "^0.16.13",
"typescript": "^3.1.3",
"typography": "^0.16.17",
"typography-theme-github": "^0.15.10"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop --host 0.0.0.0",
"serve": "NODE_ENV=production gatsby serve",
"format": "prettier --write 'src/**/*.{ts,tsx,css}'",
"test": "yarn test:dev",
"test:dev": "cross-env NODE_ENV=development cucumber-js ./specs/*.feature --require-module ts-node/register --require './specs/*.ts'",
"test:prod": "cross-env NODE_ENV=production cucumber-js ./specs/*.feature --require-module ts-node/register --require './specs/*.ts'",
"ci:dev": "cross-env NODE_ENV=development start-server-and-test develop http://0.0.0.0:8000 test:dev",
"ci:prod": "cross-env NODE_ENV=production gatsby build && start-server-and-test serve http://localhost:9000 test:prod",
"deploy": "gatsby build && gh-pages -d public -b master",
"pages": "gh-pages --help"
},
"devDependencies": {
"@types/chai": "^4.1.6",
"@types/cucumber": "^4.0.4",
"@types/node": "^10.12.0",
"@types/puppeteer": "^1.9.0",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"cucumber": "^5.0.2",
"cucumber-html-reporter": "^4.0.4",
"gh-pages": "^2.0.1",
"husky": "^1.1.2",
"lint-staged": "^7.3.0",
"prettier": "^1.14.2",
"puppeteer": "^1.9.0",
"start-server-and-test": "^1.7.4",
"ts-node": "^7.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/careertrek-hacktoberfest-day-2018/careertrek-hacktoberfest-day-2018.github.io"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js,json,css,md}": [
"prettier --write",
"git add"
]
}
}