This repository was archived by the owner on Jan 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.66 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
{
"name": "typecobol-website",
"version": "0.9.0",
"description": "TypeCobolTeam's Website",
"main": "n/a",
"repository": "https://github.com/TypeCobolTeam/TypeCobol-WebSite.git",
"author": "TypeCobolTeam <typecobol@e-i.com>",
"license": "CeCILL-C",
"private": true,
"scripts": {
"zip": "export ZIP=true || set ZIP=true&& npm run build",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"develop": "gatsby develop",
"eslint": "eslint . --ext .tsx,.ts.jsx,.js",
"test": "jest --config ./jest/jest.config.js",
"netlify:production": "npm run test && npm run zip && npm run clean && npm run build",
"netlify:default": "npm run test && npm run build"
},
"dependencies": {
"@reach/router": "^1.2.1",
"@typescript-eslint/eslint-plugin": "^1.10.2",
"@typescript-eslint/parser": "^1.11.0",
"antd": "^3.19.5",
"archiver": "^3.0.0",
"codemirror": "^5.48.0",
"eslint": "^6.0.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-import-resolver-typescript": "^1.1.1",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.0",
"gatsby": "^2.13.28",
"gatsby-plugin-breadcrumb": "^2.1.1",
"gatsby-plugin-catch-links": "^2.1.0",
"gatsby-plugin-manifest": "^2.2.0",
"gatsby-plugin-netlify": "^2.1.0",
"gatsby-plugin-no-javascript": "^1.1.2",
"gatsby-plugin-offline": "^2.2.0",
"gatsby-plugin-react-helmet": "^3.0.12",
"gatsby-plugin-sharp": "^2.2.2",
"gatsby-plugin-sitemap": "^2.2.0",
"gatsby-remark-codemirror": "^0.3.0",
"gatsby-remark-images": "^3.1.2",
"gatsby-source-filesystem": "^2.0.38",
"gatsby-transformer-remark": "^2.6.7",
"gray-matter": "^4.0.0",
"js-yaml": "^3.13.1",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"prettier": "^1.18.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.1",
"ts-import-plugin": "^1.6.1",
"ts-loader": "^6.0.3",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"webpack": "^4.34.0"
},
"devDependencies": {
"@types/enzyme": "^3.10.1",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.15",
"@types/js-yaml": "^3.12.1",
"@types/node": "^12.6.8",
"@types/react": "^16.8.23",
"@types/react-dom": "16.8.4",
"@types/react-helmet": "5.0.8",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint-plugin-jest": "^22.11.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.8.0",
"jest-extended": "^0.11.2",
"ts-jest": "^24.0.2",
"typescript": "^3.5.2"
}
}