-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.98 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "tamachi-gatsby",
"version": "0.6.0",
"description": "Gatsby site for documentation or blogging",
"author": "Alvaro Garcia",
"license": "MIT",
"private": true,
"scripts": {
"start": "npm run dev",
"build": "gatsby build",
"build:demo": "env USE_DEMO=yes gatsby build --prefix-paths",
"clean": "rm -rf public",
"dev": "gatsby develop --port 3000",
"dev:demo": "env USE_DEMO=yes npm run dev",
"docker": "docker-compose up -d",
"docker:recreate": "docker-compose down && docker-compose build --no-cache && docker-compose up",
"docker:stop": "docker-compose down",
"serve": "gatsby serve --port 3000 -H 0.0.0.0",
"test": "npm run test:types && npm run test:lint && npm run test:unit && npm run test:e2e && npm run test:prettier",
"test:types": "tsc",
"test:lint": "eslint \"**/*.{js,ts,tsx}\"",
"test:e2e": "start-server-and-test dev:demo http://localhost:3000 \"cypress run\"",
"test:e2e:dev": "cypress open",
"test:prettier": "prettier --check \"**/*.{js,ts,tsx,json,html}\"",
"test:unit": "jest",
"test:unit:dev": "jest --watch",
"prettier": "prettier --write \"**/*.{js,ts,tsx,json,html}\"",
"deploy": "npm run clean && npm run test && npm run build:demo && gh-pages -d public"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-typescript": "^7.13.0",
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"babel-preset-gatsby": "^1.3.0",
"copy-text-to-clipboard": "^3.0.1",
"fuse.js": "^6.4.6",
"gatsby": "^3.2.1",
"gatsby-alias-imports": "^1.0.6",
"gatsby-plugin-layout": "^2.2.0",
"gatsby-plugin-manifest": "^3.2.0",
"gatsby-plugin-mdx": "^2.2.0",
"gatsby-plugin-offline": "^4.2.0",
"gatsby-plugin-react-helmet": "^4.2.0",
"gatsby-plugin-sharp": "^3.2.1",
"gatsby-plugin-stylus": "^3.2.0",
"gatsby-plugin-typescript": "^3.2.0",
"gatsby-plugin-zopfli": "^2.0.0",
"gatsby-remark-images": "^4.2.0",
"gatsby-remark-prismjs": "^4.2.0",
"gatsby-remark-unwrap-images": "^1.0.2",
"gatsby-source-filesystem": "^3.2.0",
"gatsby-transformer-remark": "^3.2.0",
"lodash.throttle": "^4.1.1",
"prismjs": "^1.23.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-scrollbars-custom": "^4.0.25",
"remove-markdown": "^0.3.0",
"stylus": "^0.54.8",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/lodash.throttle": "^4.1.6",
"@types/mdx-js__react": "^1.5.3",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@types/react-helmet": "^6.1.1",
"@types/remove-markdown": "^0.3.0",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"cypress": "^7.1.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.2",
"gh-pages": "^3.1.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"start-server-and-test": "^1.12.1",
"typescript": "^4.2.4"
}
}