-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.35 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
{
"name": "node-solana",
"version": "1.0.0",
"description": "Node solana for education scope",
"author": "Franco Vitelli",
"license": "ISC",
"private": true,
"workspaces": [
"services/*"
],
"scripts": {
"precommit": "npm run lint:check",
"build": "npm run build -ws",
"postinstall": "[ \"$NODE_ENV\" = production ] && exit 0; npm run license-checker; husky install; npm run build",
"lint": "eslint --ext .jsx --ext .js . --ext .ts --ext .tsx --ext json --ext yaml",
"lint:check": "npm run lint -- --max-warnings 0",
"pretsc": "rimraf .build",
"tsc": "npm run tsc --workspaces",
"test": "cross-env TZ=UTC jest .*.spec.ts",
"license-checker": "license-checker --csv --out ./licenses.csv",
"sonar:server": " docker-compose -f docker-compose.sonar.yml down -v && docker-compose -f docker-compose.sonar.yml up --force-recreate",
"sonar:scanner": "./sonar-change-password.sh; npm run test:coverage && sonar-scanner -Dsonar.host.url=http://localhost:9000 -Dsonar.login=admin -Dsonar.password=password",
"start:dev:ui": "npm run start:dev -w @services/ui"
},
"devDependencies": {
"@faker-js/faker": "^8.3.1",
"@types/convict": "^6.1.6",
"@types/jest": "^29.5.10",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"autoprefixer": "^10.4.17",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jest-sonar-reporter": "^2.0.0",
"license-checker": "^25.0.1",
"nodemon": "^3.0.1",
"postcss": "^8.4.35",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"sonarqube-scanner": "^3.3.0",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"tsoa": "^5.1.1",
"typescript": "^5.3.2"
},
"jestSonar": {
"reportPath": "coverage",
"reportFile": "report.xml",
"indent": 4
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.15.11",
"@mui/material": "^5.15.11",
"@mui/styled-engine-sc": "^6.0.0-alpha.17",
"next": "^14.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^6.1.8"
}
}