-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
97 lines (97 loc) · 2.75 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
88
89
90
91
92
93
94
95
96
97
{
"name": "langua",
"version": "0.4.4",
"license": "AGPL-3.0",
"author": "Ian A. Cook",
"description": "A suite of language tools",
"repository": {
"type": "git",
"url": "https://github.com/Susurrus-LLC/langua"
},
"bugs": {
"url": "https://github.com/Susurrus-LLC/langua/issues"
},
"homepage": "https://susurrus-llc.github.io/langua/",
"private": true,
"scripts": {
"build": "gatsby build --prefix-paths",
"develop": "gatsby develop",
"format": "prettier-standard --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "yarn develop",
"serve": "gatsby serve --prefix-paths",
"clean": "gatsby clean",
"lintjs": "eslint src/**/*.js",
"lintmd": "remark .",
"test": "jest --watch",
"test-once": "jest",
"test-with-coverage": "jest --coverage && codacy-coverage < ./coverage/lcov.info"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.js": [
"prettier-standard"
]
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.2.1",
"classnames": "^2.3.2",
"file-saver": "^2.0.5",
"gatsby": "^4.6.2",
"gatsby-image": "^3.11.0",
"gatsby-plugin-google-fonts": "^1.0.1",
"gatsby-plugin-manifest": "^4.25.0",
"gatsby-plugin-offline": "^5.25.0",
"gatsby-plugin-react-helmet": "^5.25.0",
"gatsby-plugin-sass": "^5.24.0",
"gatsby-plugin-sharp": "^4.25.0",
"gatsby-source-filesystem": "^4.25.0",
"gatsby-transformer-sharp": "^4.25.0",
"js-schema": "^1.0.1",
"node-sass": "^8.0.0",
"normalize.css": "^8.0.1",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-toastify": "^9.1.1",
"react-vis": "^1.11.7"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"babel-jest": "^29.3.1",
"babel-preset-gatsby": "^2.24.0",
"codacy-coverage": "^3.4.0",
"eslint": "^8.30.0",
"eslint-config-react-app": "^7.0.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.7",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-standard": "^5.0.0",
"husky": "^8.0.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"lint-staged": "^13.1.0",
"prettier": "2.8.1",
"prettier-standard": "^16.4.1",
"react-test-renderer": "^17.0.2",
"remark-cli": "^11.0.0",
"remark-lint": "^9.1.1",
"remark-preset-lint-recommended": "^6.1.2"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 9",
"not op_mini all"
]
}