-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.08 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.08 KB
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
{
"name": "app",
"version": "0.0.1",
"description": "Web client for the community edition of Lacuna Expanse.",
"private": true,
"author": "Lacuna Expanse Corp, Lacuna Expanse Community & Open Source Contributors",
"contributors": [
"Natalie McCallum <[email protected]> (https://github.com/1vasari)",
"Darin McBride <[email protected]> (https://github.com/dmcbride)"
],
"scripts": {
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write app/**/*.ts app/**/*.tsx app/yui/**/*.js app/components/**/*.jsx stubs/**/*.ts",
"types": "tsc --noEmit",
"dev": "vite",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"build": "vite build && ln -s ../Lacuna-Assets ./dist/Lacuna-Assets"
},
"homepage": "https://github.com/tlecommunity/app",
"dependencies": {
"@tlecommunity/client": "^0.4.2",
"bulma": "^0.9.4",
"classnames": "^2.3.1",
"create-react-class": "^15.6.3",
"formik": "^2.2.9",
"jquery": "^3.5.0",
"lodash": "^4.17.15",
"mobx": "^6.3.7",
"mobx-react": "^7.2.1",
"moment": "^2.24.0",
"prop-types": "^15.7.2",
"react": "^18.x.x",
"react-dom": "^18.x.x",
"react-draggable": "^4.0.3",
"react-tabs": "^5.1.0",
"react-tooltip": "^4.x.x",
"sass": "^1.52.1",
"validator": "^13.0.0",
"vex-js": "^4.1.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/jest": "^28.1.1",
"@types/jquery": "^3.5.14",
"@types/lodash": "^4.14.182",
"@types/node": "^18.0.0",
"@types/react": "^18.x.x",
"@types/react-dom": "^18.x.x",
"@types/validator": "^13.7.3",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.14.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"prettier": "^2.0.0",
"ts-jest": "^28.0.2",
"typescript": "^4.6.4",
"vite": "^3.0.0"
},
"engines": {
"node": ">=22",
"npm": ">=10"
}
}