-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.85 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": "arctic",
"version": "0.0.0",
"description": "The snowy home of Arctic Ice Studio",
"author": "Arctic Ice Studio <[email protected]> (https://www.arcticicestudio.com)",
"homepage": "https://www.arcticicestudio.com",
"repository": {
"type": "git",
"url": "https://github.com/arcticicestudio/arctic.git"
},
"license": "MIT",
"private": true,
"engines": {
"yarn": "^1.17.3"
},
"workspaces": [
"packages/@arcticicestudio/*",
"www"
],
"scripts": {
"format": "npm-run-all format:fix:* format:pretty",
"format:fix:js": "eslint --fix --ext .js .",
"format:fix:ts": "eslint --fix --ext ts,.tsx .",
"format:pretty": "prettier --write \"**/*.{js,json,md,mdx,ts,tsx,yml}\"",
"lint": "npm-run-all --continue-on-error lint:*",
"lint:js": "eslint --ext .js .",
"lint:md": "remark --no-stdout . \".github/**/*.md\"",
"lint:pretty": "prettier --check \"**/*.{js,json,md,mdx,ts,tsx,yml}\"",
"lint:ts": "eslint --ext .ts,.tsx .",
"lint:tsc": "tsc"
},
"devDependencies": {
"@arcticicestudio/eslint-config": ">=0.8.0 <1.0.0",
"@arcticicestudio/eslint-config-typescript": ">=0.8.0 <1.0.0",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"babel-eslint": "^10.0.3",
"eslint": "^6.3.0",
"eslint-config-prettier": "^6.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.0.1",
"husky": "^3.0.4",
"lint-staged": "^9.2.5",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"remark-cli": "^7.0.0",
"remark-preset-lint-arcticicestudio": ">=0.3.0 <1.0.0",
"typescript": "^3.6.2"
}
}