This repository has been archived by the owner on Nov 16, 2023. It is now read-only.
forked from HumanSignal/dm2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
131 lines (131 loc) · 3.91 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "@heartexlabs/datamanager",
"version": "2.0.5",
"description": "",
"publishConfig": {
"access": "public"
},
"main": "./build/static/js/main.js",
"repository": {
"url": "https://github.com/heartexlabs/dm2"
},
"files": [
"build/",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"README.md"
],
"browser": {},
"scripts": {
"build:bundle": "yarn run build:final",
"build:notsourcemap": "GENERATE_SOURCEMAP=false yarn run build",
"build:final": "BUILD_NO_CHUNKS=true yarn run build",
"build:no-hash": "BUILD_NO_HASH=true BUILD_NO_CHUNKS=true yarn run build",
"build:module": "NODE_ENV=production BUILD_NO_HASH=true BUILD_NO_CHUNKS=true BUILD_MODULE=true yarn run build",
"build:module-dev": "BUILD_NO_MINIMIZATION=true BUILD_NO_HASH=true BUILD_NO_CHUNKS=true BUILD_MODULE=true yarn run build",
"prettier-styles": "prettier --write src/**/*.scss",
"prettier": "prettier --write src/**/*.js",
"build": "yarn run webpack",
"watch": "yarn run webpack --watch",
"start": "node dev-server.js",
"test": "echo \"Error: no test specified\" && exit 0",
"lint": "yarn run eslint ./src"
},
"author": "Heartex, Inc.",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.12.17",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.13",
"@babel/plugin-proposal-optional-chaining": "^7.12.17",
"@babel/plugin-transform-runtime": "^7.12.17",
"@babel/preset-env": "^7.12.17",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.13.0",
"@babel/runtime": "^7.12.18",
"@reecelucas/react-use-hotkeys": "^1.3.1",
"@svgr/webpack": "^8.0.1",
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
"@types/strman": "^2.0.0",
"@types/webpack-dev-server": "^3.11.5",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"axios": "^1.6.1",
"babel-loader": "^8.2.2",
"babel-plugin-import": "^1.13.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"chroma-js": "^2.1.0",
"css-loader": "^5.0.2",
"css-minimizer-webpack-plugin": "^3.0.2",
"date-fns": "^2.18.0",
"deep-equal": "^2.0.5",
"dotenv-defaults": "^2.0.2",
"dotenv-webpack": "^6.0.0",
"eslint": "^7.20.0",
"eslint-plugin-react": "^7.22.0",
"eslint-webpack-plugin": "^3.0.1",
"html-webpack-plugin": "^5.2.0",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"mini-css-extract-plugin": "^1.3.8",
"mobx": "^5.15.4",
"mobx-react": "^6",
"mobx-state-tree": "^3.16.0",
"nanoid": "^3.1.10",
"prettier": "^2.0.5",
"react": "^17.0.2",
"react-datepicker": "^3.6.0",
"react-dom": "^17.0.2",
"react-hot-loader": "^4.12.20",
"react-hotkeys-hook": "^2.4.0",
"react-icons": "^3.11.0",
"react-virtualized-auto-sizer": "^1.0.2",
"react-window": "^1.8.6",
"react-window-infinite-loader": "^1.0.5",
"shallow-equal": "^1.2.1",
"source-map-loader": "^2.0.1",
"strman": "^2.0.1",
"stylus": "^0.54.8",
"stylus-loader": "^5.0.0",
"sweetalert": "^2.1.2",
"terser-webpack-plugin": "^5.1.1",
"typescript": "^4.2.2",
"url-loader": "^4.1.1",
"webpack": "^5.79.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.3"
},
"resolutions": {
"postcss": "8.4.31"
},
"nohoist": [
"**/babel-preset-react-app/@babel/runtime"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.(js|jsx)": [
"eslint --fix --quiet",
"git add"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}