-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
59 lines (59 loc) · 1.56 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
{
"name": "spellie",
"version": "1.0.0",
"description": "Wordle for kids!",
"repository": {
"type": "git",
"url": "git+https://github.com/canadianveggie/spellie.git"
},
"keywords": [
"wordle",
"word",
"puzzle",
"kids"
],
"homepage": "https://github.com/canadianveggie/spellie#readme",
"scripts": {
"start": "python -m SimpleHTTPServer",
"test": "jest --verbose --watch",
"test:ci": "jest",
"typecheck": "tsc --noEmit",
"lint": "npm run typecheck && npm run lint:js && npm run lint:css && npm run lint:prettier",
"lint:js": "eslint index.html public test",
"lint:prettier": "prettier --print-width=120 --check '**/*.{css,js,html}'",
"lint:css": "stylelint '**/*.css'",
"prepare": "husky install"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"axios": "^1.6.0",
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-compat": "^4.0.2",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-only-warn": "^1.0.3",
"husky": "^7.0.4",
"jest": "^27.4.7",
"lint-staged": "^12.2.1",
"prettier": "2.5.1",
"stylelint": "^14.5.3",
"stylelint-config-standard": "^25.0.0",
"typescript": "^4.9.4"
},
"browserslist": [
">0.5%",
"last 2 versions",
"not ie <= 11",
"not op_mini all",
"not dead"
],
"lint-staged": {
"**/*": "prettier --print-width=120 --write --ignore-unknown"
},
"jest": {
"verbose": true,
"testEnvironment": "jsdom"
}
}