forked from aws-amplify/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 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
69
70
{
"name": "docs",
"version": "2.0.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/aws-amplify/docs.git"
},
"license": "Apache-2.0",
"private": true,
"workspaces": [
"capi"
],
"dependencies": {
"aws-amplify": "latest",
"@aws-amplify/ui-components": "latest",
"array-flatten": "^3.0.0",
"copy-to-clipboard": "^3.2.1",
"emotion": "^10.0.23"
},
"devDependencies": {
"@stencil/core": "^1.17.0",
"@stencil/eslint-plugin": "^0.2.1",
"@stencil/router": "^1.0.1",
"@stencil/sass": "^1.3.1",
"@types/fs-extra": "^9.0.1",
"@types/jest": "^26.0.19",
"@types/node": "^12.12.9",
"@types/puppeteer": "1.20.2",
"@types/url-parse": "^1.4.3",
"@typescript-eslint/eslint-plugin": "^2.7.0",
"@typescript-eslint/parser": "^2.7.0",
"cspell": "^4.0.55",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"fs-extra": "^9.0.1",
"husky": "^4.2.5",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"prettier": "^1.19.1",
"puppeteer": "1.20.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"ts-node": "^8.5.0",
"typescript": "^3.8.3",
"workbox-build": "4.3.1"
},
"husky": {
"hooks": {
"pre-push": "yarn spellcheck"
}
},
"scripts": {
"clean-client": "cd client && rm -rf .stencil www dist",
"clean-capi": "cd capi && yarn clean",
"clean-root": "rm -rf node_modules yarn.lock",
"clean": "yarn clean-client & yarn clean-capi & yarn clean-root",
"refresh": "yarn clean && yarn",
"task": "ts-node tasks",
"build": "yarn task build",
"build-content": "yarn build --skip-client-build",
"spellcheck": "cspell 'docs/**/*.md'",
"start": "yarn build --watch",
"test-client": "yarn build && cd client && stencil test --spec --e2e",
"test-capi": "cd capi && yarn test",
"test": "yarn test-capi && yarn test-client"
}
}