-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.43 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
{
"name": "realty-investor-app",
"version": "0.0.1",
"description": "",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"scripts": {
"clean": "rimraf ./dist",
"build": "tsc -project tsconfig.json",
"build:dev_test": "tsc --project tsconfig-dev.json",
"lint": "eslint --config eslint.config.js .",
"lint:fix": "eslint --config eslint.config.js . --fix",
"test": "jest",
"test:debug": "jest --debug",
"test:cov": "jest --coverage",
"prebuild": "npm run clean",
"prebuild:dev_test": "npm run clean",
"pretest": "rimraf ./.jestcache",
"prepare": "husky install",
"prettier": "prettier --write",
"test:related": "jest --findRelatedTests",
"webpack:dev": "webpack --mode=development",
"webpack:prod": "webpack --mode=production",
"prewebpack": "npm run clean",
"webpack:serve:debug": "node --inspect ./node_modules/webpack/bin/webpack.js serve --mode=development",
"webpack:serve": "webpack serve --mode=development"
},
"keywords": [],
"author": "Kelly Vernon",
"license": "ISC",
"engineStrict": true,
"engines": {
"npm": "~9"
},
"dependencies": {
"@cubedelement.com/realty-investor-timeline": "^4.0.1",
"@emotion-icons/fa-solid": "^3.14.0",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"emotion-icons": "^3.27.0",
"lodash.get": "^4.4.2",
"lodash.isequal": "^4.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-movable": "^3.0.4",
"react-select": "~5.8"
},
"devDependencies": {
"@babel/core": "~7.24.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@emotion/jest": "^11.11.0",
"@eslint/compat": "^1.1.0",
"@eslint/js": "^9.4.0",
"@testing-library/dom": "^10.1.0",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/chance": "^1.1.3",
"@types/jest": "^29.4.0",
"@types/jsdom": "^21.1.0",
"@types/lodash.isequal": "^4.5.8",
"@types/node": "^18.18.4",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.10",
"@types/webpack": "^5.28.5",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"acorn": "^8.11.3",
"ajv": "^8.12.0",
"chance": "^1.1.9",
"copy-webpack-plugin": "^12.0.2",
"eslint": "^9.4.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-jest-dom": "^5.0.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^6.2.2",
"eslint-webpack-plugin": "^4.0.0",
"globals": "^15.4.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^9.0.11",
"jest": "^29.4.2",
"jest-environment-jsdom": "^29.4.2",
"jsdom": "^24.1.0",
"lint-staged": "^15.2.7",
"prettier": "^3.0.0",
"react-select-event": "^5.5.1",
"rimraf": "^5.0.1",
"ts-jest": "^29.0.5",
"ts-loader": "^9.5.0",
"ts-node": "^10.9.2",
"typescript": "~5.4.5",
"typescript-eslint": "^7.13.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^5.0.4"
}
}