-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2 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
{
"name": "wikipedia-pageviews",
"version": "1.0.0",
"private": true,
"description": "A Wikipedia pageviews application",
"repository": "[email protected]:AlyssaKirstine/wikipedia-pageviews.git",
"author": "Alyssa Melendez <[email protected]>",
"keywords": [
"gatsby"
],
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"axios": "^0.27.2",
"gatsby": "^4.15.2",
"gatsby-plugin-emotion": "^7.16.0",
"react": "^18.1.0",
"react-datepicker": "^4.8.0",
"react-dom": "^18.1.0"
},
"devDependencies": {
"@babel/preset-typescript": "^7.17.12",
"@emotion/babel-preset-css-prop": "^11.2.0",
"@emotion/eslint-plugin": "^11.7.0",
"@types/jest": "^28.1.1",
"@types/node": "^17.0.35",
"@types/react": "^18.0.9",
"@types/react-datepicker": "^4.4.2",
"@types/react-dom": "^18.0.5",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"babel-jest": "^28.1.1",
"babel-preset-gatsby": "^2.16.0",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-webpack-plugin": "^3.1.1",
"husky": "^8.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^28.1.1",
"lint-staged": "^13.0.0",
"prettier": "2.6.2",
"react-test-renderer": "^18.1.0",
"typescript": "^4.7.2"
},
"scripts": {
"develop": "gatsby develop",
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "jest",
"typecheck": "tsc --noEmit",
"webpack-dev": "gatsby develop -H gatsby.wikipedia-pageviews.localhost -o",
"prepare": "husky install",
"pre-commit": "yarn lint-staged"
},
"lint-staged": {
"src/**/*.{js,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}