-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.73 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.73 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "ka-web",
"version": "0.0.1",
"description": "Web client for the open source game Kenó Antigen.",
"workspaces": [
"stubs/"
],
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/Kantigen/ka-web"
},
"author": "Lacuna Expanse Corp, Kenó Antigen Community & Open Source Contributors",
"contributors": [
"Nathan McCallum <hey@nathan-mccallum.com> (https://github.com/1vasari)",
"Darin McBride <dmcbride@cpan.org> (https://github.com/dmcbride)"
],
"bugs": {
"url": "https://github.com/Kantigen/ka-web/issues"
},
"scripts": {
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write app/**/*.ts app/**/*.tsx app/yui/**/*.js app/components/**/*.jsx stubs/**/*.ts",
"compile": "tsc --noEmit",
"dev": "concurrently \"npm run serve:app\" \"npm run serve:assets\"",
"dev:stubbed": "concurrently \"npm run serve:app -- --mode stubbed\" \"npm run serve:stubs\" \"npm run serve:assets\"",
"test": "npm run compile && jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"build": "vite build && ln -s ../Lacuna-Assets ./dist/Lacuna-Assets",
"serve:app": "vite",
"serve:stubs": "nodemon --config stubs/nodemon.json",
"serve:assets": "http-server ./Lacuna-Assets --cors --port 3002"
},
"homepage": "https://github.com/Kantigen/ka-web",
"dependencies": {
"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/express": "^4.17.13",
"@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",
"concurrently": "^7.1.0",
"eslint": "^8.14.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"http-server": "^14.1.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"nodemon": "^2.0.16",
"prettier": "^2.0.0",
"ts-jest": "^28.0.2",
"ts-node": "^10.8.1",
"typescript": "^4.6.4",
"vite": "^3.0.0"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
}
}