-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
58 lines (58 loc) · 1.63 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
{
"name": "gram",
"description": "",
"type": "module",
"scripts": {
"test": "lerna run test",
"build": "lerna run --scope=@gram/api --scope=@gram/app --include-dependencies build",
"build-backend": "lerna run --scope=@gram/api --include-dependencies build",
"build-all": "lerna run build",
"dev": "npm run build-backend && lerna run start --parallel",
"snyk": "snyk test --all-projects",
"lint": "lerna run lint",
"clean": "lerna run clean",
"lint-fix": "lerna run lint-fix",
"start-frontend": "npm run -w app start",
"start-backend": "npm run -w api start",
"docker-start": "SERVE_FRONTEND=yesplease node api/dist/index.js",
"version": "lerna version --force-publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/klarna-incubator/gram.git"
},
"author": "Klarna",
"license": "Apache License 2.0",
"bugs": {
"url": "https://github.com/klarna-incubator/gram/issues"
},
"homepage": "https://github.com/klarna-incubator/gram#readme",
"workspaces": [
"app",
"api",
"core",
"config",
"plugins/*"
],
"private": true,
"devDependencies": {
"@tsconfig/node18": "^18.2.2",
"@types/jest": "^29.4.0",
"@types/node": "^20.4.2",
"all-contributors-cli": "^6.26.1",
"conventional-changelog-cli": "^2.2.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-mock": "^29.4.1",
"lerna": "^8.1.6",
"prettier": "^2.3.2",
"rimraf": "^4.1.2",
"snyk": "^1.1291.1",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"log4js": "^6.9.1"
}
}