-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.77 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.77 KB
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
99
100
{
"private": true,
"name": "atlantis",
"version": "0.0.1",
"license": "MIT",
"scripts": {
"start": "docz dev",
"start:withPrivateComponents": "PRIVATE_COMPONENTS=visible docz dev",
"test": "jest",
"plop": "plop",
"build": "docz build",
"clean": "rm -rf .docz",
"lint:js": "eslint --ext .js,.jsx,.ts,.tsx .",
"lint:css": "stylelint 'packages/**/*.css' --allow-empty-input",
"lint:markdown": "prettier --check '**/*.md'",
"lint": "npm run lint:js && npm run lint:css",
"lint:fix": "npm run lint:js -- --fix && npm run lint:css -- --fix && npm run lint:markdown -- --write",
"install": "lerna bootstrap",
"release-the-kraken": "npm ci && lerna publish",
"prerelease": "lerna publish --canary --dist-tag next --preid pre"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GetJobber/atlantis.git"
},
"author": "The Frends",
"bugs": {
"url": "https://github.com/GetJobber/atlantis/issues"
},
"homepage": "https://github.com/GetJobber/atlantis#readme",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@jobber/design": "file:packages/design",
"@jobber/eslint-config": "file:packages/eslint-config",
"@jobber/stylelint-config": "file:packages/stylelint-config",
"@testing-library/react": "^8.0.4",
"@testing-library/user-event": "^4.1.0",
"@types/jest": "^24.0.14",
"@types/react": "^16.8.20",
"@types/react-dom": "^16.8.4",
"css-loader": "^3.0.0",
"docz": "^1.2.0",
"docz-theme-default": "^1.0.0",
"eslint": "^6.3.0",
"eslint-plugin-jest": "^22.6.4",
"glob": "^7.1.4",
"husky": "^2.4.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.7.1",
"jest-dom": "^3.5.0",
"jest-junit": "^6.4.0",
"lerna": "^3.15.0",
"lint-staged": "^9.2.5",
"plop": "^2.3.0",
"postcss": "^7.0.17",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.6.0",
"prettier": "^1.18.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"style-loader": "^0.23.1",
"stylelint": "^10.1.0",
"stylelint-junit-formatter": "^0.2.1",
"typed-css-modules-loader": "^0.0.17",
"typescript": "^3.5.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --format=codeFrame --fix",
"git add",
"jest --bail --findRelatedTests"
],
"*.css": [
"stylelint --fix",
"git add"
],
"*.{md,mdx}": [
"prettier --write",
"git add"
]
},
"browserslist": [
"> 1%",
"last 2 versions",
"Firefox ESR",
"iOS 9",
"ie >= 11"
],
"dependencies": {
"@std-proposal/temporal": "0.0.1"
}
}