-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
42 lines (42 loc) · 1.04 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
{
"name": "opensumi-doc",
"private": true,
"version": "1.0.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/opensumi/docs"
},
"bugs": {
"url": "https://github.com/opensumi/docs/issues"
},
"scripts": {
"start": "npm run develop",
"develop": "gatsby develop -H 0.0.0.0 --open",
"build": "gatsby build --prefix-paths",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"serve": "gatsby serve",
"clean": "gatsby clean",
"pretty-quick": "pretty-quick",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
},
"dependencies": {
"react": "^18.1.0",
"react-dom": "^18.1.0"
},
"devDependencies": {
"@opensumi/gatsby-theme": "^2.4.4",
"@babel/standalone": "^7.18.4",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"gatsby": "^4.15.1",
"husky": "^3.1.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}