-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.62 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
{
"name": "bagofholding-v2",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"develop": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"todo": "leasot -x --reporter markdown '{src,tests}/**/*' --ignore '**/*.+(jpg|jpeg|gif|png|svg|json)' > todo.md",
"test": "jest --watch",
"test:ci": "jest --ci",
"coverage": "jest --coverage --collectCoverageFrom='src/packages/**/*' --coverageDirectory=coverage/",
"coverage:show": "http-server ./coverage/lcov-report",
"lerna:list": "lerna list",
"lerna:bootstrap": "lerna bootstrap",
"lerna:publish": "lerna publish",
"lerna:publish:ci": "lerna publish --yes --no-verify-access --force-publish"
},
"dependencies": {
"@types/node": "20.3.1",
"@types/react": "18.2.13",
"@types/react-dom": "18.2.6",
"bootstrap": "^5.3.0",
"clsx": "^1.2.1",
"eslint": "8.43.0",
"eslint-config-next": "13.4.6",
"next": "14.2.10",
"react": "18.2.0",
"react-ace": "^10.1.0",
"react-dom": "18.2.0",
"rsup-progress": "^3.1.1",
"sass": "^1.63.4",
"typescript": "5.1.3"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/testing-library__jest-dom": "^5.14.6",
"eslint-config-prettier": "^8.8.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prettier": "^4.2.1",
"http-server": "^14.1.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"leasot": "^13.3.0",
"lerna": "^7.0.2",
"prettier": "^2.8.8"
}
}