-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 2.8 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
98
{
"name": "setlla",
"version": "2.0.0",
"license": "0BSD",
"private": false,
"repository": "https://github.com/jctaoo/stella",
"author": "jctaoo",
"dependencies": {
"@reach/router": "^1.3.4",
"antd": "^4.15.0",
"chokidar": "^3.5.1",
"dayjs": "^1.10.6",
"framer-motion": "^4.1.2",
"gatsby": "^3.0.0",
"gatsby-plugin-image": "^1.10.1",
"gatsby-plugin-offline": "^4.2.0",
"gatsby-plugin-react-helmet": "^4.2.0",
"gatsby-plugin-sass": "^4.2.0",
"gatsby-plugin-sharp": "^3.10.2",
"gatsby-remark-images": "^5.7.0",
"gatsby-remark-katex": "^5.7.0",
"gatsby-remark-prismjs": "^5.7.0",
"gatsby-source-filesystem": "^3.9.0",
"gatsby-transformer-remark": "^4.7.0",
"gatsby-transformer-sharp": "^3.10.0",
"highlight.js": "^10.7.2",
"jsdom": "^16.5.2",
"katex": "^0.13.13",
"marked": "^2.0.1",
"prettier": "^2.2.1",
"prismjs": "^1.24.1",
"query-string": "^7.0.0",
"rc-queue-anim": "^1.8.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-redux": "^7.2.3",
"react-scripts": "4.0.3",
"redux-devtools-extension": "^2.13.9",
"sass": "^1.32.8",
"typescript": "~4.2.3",
"yaml": "^1.10.2"
},
"scripts": {
"start": "rm -Rf ./.cache && gatsby clean &&gatsby develop",
"build": "gatsby build",
"format": "prettier -w .",
"fix": "run-s fix:*",
"fix:prettier": "prettier . --write",
"fix:lint": "eslint . --fix",
"test:lint": "eslint .",
"test:prettier": "prettier . --list-different"
},
"devDependencies": {
"@types/fs-extra": "^9.0.10",
"@types/gatsby-transformer-remark": "^2.9.1",
"@types/jest": "^26.0.22",
"@types/jsdom": "^16.2.10",
"@types/katex": "^0.11.0",
"@types/marked": "^2.0.1",
"@types/node": "^14.14.37",
"@types/prismjs": "^1.16.6",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@types/react-helmet": "^6.1.0",
"@types/react-redux": "^7.1.16",
"@types/react-router-dom": "^5.1.7",
"@types/redux": "^3.6.0",
"@types/redux-thunk": "^2.1.0",
"@types/styled-components": "^5.1.9",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"eslint": "^7.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.0",
"gatsby-plugin-antd": "^2.2.0",
"gatsby-plugin-typescript": "^3.2.0",
"npm-run-all": "^4.1.5",
"source-map-support": "^0.5.19",
"ts-node": "^9.1.1"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}