-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.23 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
{
"name": "backstage2",
"version": "1.14.1-cactus",
"engines": {
"yarn": "^1.0.0",
"node": "^18.0.0"
},
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"tc": "tsc",
"lint": "eslint .",
"format": "prettier -w .",
"tcl": "tsc && eslint .",
"migrate": "knex --esm migrate:latest",
"migrate:down": "knex --esm migrate:down",
"migrate:make": "knex --esm migrate:make --stub knex/migrations_stub.js",
"seed": "knex --esm seed:run --specific=mock.js",
"seed:init": "knex --esm seed:run --specific=init.js",
"prepare": "husky install",
"test": "cypress run -q",
"reset-sqlite": "rimraf dev.sqlite3 && yarn migrate && yarn seed"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-regular-svg-icons": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@googleapis/calendar": "^9.4.0",
"@googleapis/drive": "^8.4.0",
"@react-pdf/renderer": "^3.1.14",
"@slack/web-api": "^6.10.0",
"archiver": "^6.0.1",
"bcryptjs": "^2.4.3",
"better-sqlite3": "^9.2.0",
"bootstrap": "^4.0.0",
"dotenv": "^16.3.1",
"currency.js": "^2.0.4",
"iconv-lite": "^0.6.3",
"iron-session": "^6.3.1",
"knex": "^3.0.1",
"next": "^14.0.3",
"objection": "^3.1.3",
"pg": "^8.11.3",
"react": "^18.2.0",
"react-bootstrap": "^1.5.2",
"react-bootstrap-typeahead": "^5.2.2",
"react-bus": "^3.0.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.2.0",
"react-highlight-words": "^0.20.0",
"react-loading-skeleton": "^3.3.1",
"react-markdown": "^9.0.1",
"remark-gfm": "^4.0.0",
"sass": "^1.69.5",
"swr": "^2.2.4",
"turndown": "^7.1.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.0.3",
"@types/archiver": "^6.0.2",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^18.18.14",
"@types/react": "^18.2.57",
"@types/react-bootstrap-typeahead": "^5.1.12",
"@types/react-dom": "^18.2.19",
"@types/react-highlight-words": "^0.16.7",
"@types/turndown": "^5.0.4",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"type-fest": "^4.8.3",
"typescript": "^5.3.2"
},
"license": "MIT",
"lint-staged": {
"*.{js,json,css,scss,html,md}": [
"prettier --check"
]
},
"resolutions": {
"strip-ansi": "6.0.1"
}
}