-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.9 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
71
72
73
74
75
76
{
"name": "flex-wrap-layout",
"version": "0.13.0",
"description": "Experiments with flexbox layout",
"repository": "github:tkrotoff/flex-wrap-layout",
"license": "MIT",
"keywords": [
"flexbox",
"flex-wrap"
],
"main": "dist/cjs/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"src/"
],
"sideEffects": false,
"scripts": {
"clean": "rm -rf dist examples/build coverage",
"clean:all": "npm run clean && rm -rf node_modules package-lock.json examples/node_modules examples/package-lock.json",
"build": "npm run clean && npm run build:dts && npm run build:esm && npm run build:cjs",
"build:dts": "tsc --project tsconfig.dist.json --declaration --emitDeclarationOnly --outDir dist",
"build:esm": "tsc --project tsconfig.dist.json --removeComments --outDir dist",
"build:cjs": "tsc --project tsconfig.dist.json --removeComments --module commonjs --outDir dist/cjs",
"npm:install:examples": "cd examples && npm install",
"build:examples": "cd examples && ./node_modules/.bin/webpack --mode=development",
"test": "NODE_ENV=test jest --verbose",
"test:coverage": "jest --coverage",
"test:examples": "cd examples && npm run test:e2e",
"tsc": "tsc",
"format": "prettier --write '**/*'",
"lint": "npm run tsc && eslint . '**/*.{js,ts,tsx}' && stylelint '**/*.scss'",
"prepare": "husky install",
"precommit": "lint-staged --verbose",
"prepush": "npm run build:esm && npm run build:examples && npm run test && npm run test:examples",
"prepublishOnly": "npm run clean && npm run build",
"publish:beta": "npm version 0.10.0-beta.1 && npm publish --tag next --dry-run",
"npm:update": "npm run clean:all && npx npm-check-updates --upgrade && npm install"
},
"peerDependencies": {
"react": ">=16.14"
},
"devDependencies": {
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.4.0",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"eslint": "^8.36.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-playwright": "^0.12.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unicorn": "^46.0.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": "^13.2.0",
"prettier": "^2.8.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"stylelint": "^14.16.1",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-twbs-bootstrap": "^7.0.0",
"stylelint-prettier": "^2.0.0",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
}
}