-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.4 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
{
"name": "react-source-of-truth",
"version": "4.0.0",
"repository": "git@github.com:dzek69/react-source-of-truth.git",
"author": "Jacek Nowacki",
"license": "MIT",
"scripts": {
"test": "NODE_ENV=test jest",
"docs": "typedoc src/index.ts --out docs --listInvalidSymbolLinks --includes tutorials --theme pages-plugin --includeVersion",
"compile": "yarn compile:esm && yarn compile:cjs",
"compile:esm": "rm -rf esm && tsc --project tsconfig.esm.json && node ./build-scripts/compile.esm.after.mjs",
"compile:cjs": "rm -rf dist && tsc --project tsconfig.cjs.json && node ./build-scripts/compile.cjs.after.mjs",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts,.tsx,.js,.jsx,.mjs",
"lint:fix": "yarn lint --fix",
"prepack": "yarn compile",
"prepublishOnly": "yarn audit && yarn lint && yarn test && yarn docs",
"start:dev": "next dev",
"start:dev:compatibility": "TS_NODE_FILES=true yarn start:dev"
},
"exports": {
".": {
"require": "./dist/index.js",
"default": "./esm/index.js"
}
},
"main": "./dist/index.js",
"types": "./esm/index.d.ts",
"module": "./esm/index.js",
"dependencies": {
"bottom-line-utils": "^0.17.1",
"immutable-assign": "^2.1.5"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@dzek69/eslint-config-base": "^2.1.0",
"@dzek69/eslint-config-react": "^1.2.2",
"@dzek69/eslint-config-typescript": "^0.4.0",
"@types/jest": "^26.0.23",
"@types/react": "^17.0.4",
"@types/react-dom": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"babel-plugin-module-extension": "^0.1.3",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^7.32.0",
"eslint-plugin-react": "^7.24.0",
"fs-extra": "^9.0.1",
"husky": "^7.0.4",
"jest": "^27.5.1",
"must": "^0.13.4",
"next": "^12.1.5",
"nodemon": "^2.0.15",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sass": "^1.35.2",
"ts-node": "^9.0.0",
"typedoc": "^0.21.10",
"typedoc-plugin-pages-fork-fork": "^0.0.3",
"typescript": "^4.2.4"
},
"husky": {
"hooks": {
"pre-push": "yarn prepublishOnly && yarn compile"
}
},
"libraryTemplate": {
"version": "3.4.1",
"language": "typescript",
"fixDefaultForCommonJS": true,
"jsx": true
}
}