-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 2.21 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
{
"name": "tailwind-override",
"version": "0.6.0",
"description": "Override clashing tailwind classes",
"repository": {
"type": "git",
"url": "https://github.com/richardgill/tailwind-override"
},
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"check:node": "check-node-version --package",
"ci": "tsc --noEmit && yarn run lint:js && yarn run test",
"eslint-check": "eslint --print-config .eslintrc | eslint-config-prettier-check",
"format:js": "prettier --write \"{src,test}/**/*.{t,j}s\"",
"generate:properties": "ts-node bin/findTailwindClasses.ts",
"lint": "yarn run lint:js",
"lint:js": "eslint ./src ./test --ext=js,ts",
"lint:js:without:prettier": "yarn run lint:js -- --rule 'prettier/prettier: 0'",
"lint:watch": "nodemon --watch src --exec \"yarn run lint:without:prettier\"",
"lint:without:prettier": "yarn run lint:js:without:prettier",
"precommit": "lint-staged && yarn run lint",
"prepublish": "npm run build",
"test": "jest",
"test:performance": "jest --group=performance",
"test:slow": "jest --group=slow",
"test:unit": "jest --group=unit",
"test:watch": "nodemon -w ./src -w ./test -e ts,tsx --exec 'yarn run test'"
},
"lint-staged": {
"{src,test}/**/*.{j,t}s": [
"prettier --write",
"git add"
],
"package.json": [
"sort-package-json",
"git add"
]
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.150",
"@types/node": "^14.10.1",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"css": "^3.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-prettier": "^2.0.1",
"husky": "^1.0.1",
"jest": "^27.0.6",
"jest-runner-groups": "^2.1.0",
"lint-staged": "^7.3.0",
"lodash": "^4.17.12",
"nodemon": "^1.19.4",
"prettier": "^2.3.2",
"seedrandom": "^3.0.5",
"sort-package-json": "^1.15.0",
"ts-jest": "^27.0.4",
"ts-node": "^10.4.0",
"typescript": "^4.4.4",
"uuid": "^8.3.2"
}
}