-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.25 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
77
{
"name": "boxible",
"version": "2.0.0",
"type": "module",
"description": "Typescript React component to set flexbox properties on a element",
"repository": "https://github.com/nathanstitt/boxible",
"author": "Nathan Stitt",
"license": "MIT",
"typings": "dist/boxible.d.ts",
"main": "dist/boxible.cjs",
"module": "dist/boxible.js",
"source": "src/boxible.ts",
"engines": {
"node": ">=14"
},
"scripts": {
"build": "microbundle --no-compress",
"build:tsc": "tsc",
"build:tsc:watch": "tsc --watch",
"start": "microbundle watch --no-compress --format modern,cjs",
"test:unit": "jest",
"test": "run-s test:unit lint test:build",
"test:build": "run-s build",
"pf": "run-p typecheck lint",
"typecheck": "tsc --noemit",
"postpublish": "./script/post-publish",
"lint": "eslint src/*ts"
},
"peerDependencies": {
"@emotion/styled": "*",
"react": "*"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.0",
"@emotion/jest": "^11.10.5",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.3.0",
"@testing-library/jest-dom": "^5.16.5",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.2",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"babel-jest": "^29.4.3",
"cross-env": "^7.0.3",
"csstype": "^3.1.1",
"eslint": "8.35.0",
"eslint-config-argosity": "3.2.1",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.4.3",
"microbundle": "^0.15.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.4",
"react": "~18.2.0",
"react-test-renderer": "^18.2.0",
"ts-jest": "^29.0.5",
"typedoc": "^0.23.26",
"typescript": "^4.9.5"
},
"files": [
"dist",
"src"
],
"dependencies": {
"jest-environment-jsdom": "^29.4.3"
}
}