This repository has been archived by the owner on Nov 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
55 lines (55 loc) · 2.34 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
{
"name": "chonky-website",
"version": "2.0.0",
"description": "",
"scripts": {
"install:landing": "cd landing && npm install && npm install chonky@latest",
"install:2.x_docz": "cd 2.x_docz && npm install",
"install:2.x_storybook": "cd 2.x_storybook && npm install",
"install:2.x": "npm run install:2.x_docz && npm run install:2.x_storybook",
"install:all": "npm install && npm run install:landing && npm run install:2.x",
"build:landing": "cd landing && rm -rf build/ && npm install chonky@latest && npm run build",
"build:2.x_docz": "cd 2.x_docz && rm -rf build/ && npm install chonky@latest && npm run build-typedoc && npm run build",
"build:2.x_storybook": "cd 2.x_storybook && rm -rf build/ && npm install chonky@latest && npm run build",
"build:2.x": "npm run build:2.x_docz && npm run build:2.x_storybook",
"build:all": "npm run build:landing && npm run build:2.x",
"deploy:landing": "aws s3 sync landing/build/ s3://chonky.io/ --delete --exclude \"*docs/*\" --exclude \"*storybook/*\"",
"deploy:2.x_docz": "aws s3 sync 2.x_docz/build/ s3://chonky.io/docs/2.x/ --delete",
"deploy:2.x_storybook": "aws s3 sync 2.x_storybook/build/ s3://chonky.io/storybook/2.x/ --delete",
"deploy:2.x": "npm run deploy:2.x_docz && npm run deploy:2.x_storybook",
"deploy:all": "npm run deploy:landing && npm run deploy:2.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TimboKZ/chonky-website.git"
},
"author": {
"name": "Timur Kuzhagaliyev",
"email": "[email protected]",
"url": "https://foxypanda.me/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/TimboKZ/chonky-website/issues"
},
"homepage": "https://github.com/TimboKZ/chonky-website#readme",
"dependencies": {
"@fortawesome/free-brands-svg-icons": "^5.15.1",
"@types/react": "^16.9.53",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.4",
"eslint-plugin-react-hooks": "^4.1.2",
"eslint-plugin-simple-import-sort": "^5.0.3",
"noty": "^3.2.0-beta",
"prettier": "^2.1.2"
},
"devDependencies": {
"@typescript-eslint/parser": "^4.6.0",
"typescript": "^4.0.3"
}
}