-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.6 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
{
"name": "talentbook",
"version": "1.0.0",
"description": "A platform for finding teams and mentors",
"scripts": {
"clean:modules": "rm -rf node_modules packages/**/node_modules",
"clean:build": "rm -rf packages/frontend/.cache packages/**/dist",
"bootstrap": "cd packages/backend && npm i && cd ../frontend && npm i",
"backend": "cd packages/backend && npm start",
"frontend": "cd packages/frontend && npm start",
"build:backend": "cd packages/backend && npm run build -s",
"build:frontend": "cd packages/frontend && npm run build -s",
"storybook": "cd packages/frontend && npm run storybook",
"lint": "cd packages/backend && npm run lint -s && cd ../frontend && npm run lint -s",
"test": "cd packages/backend && npm run test -s && cd ../frontend && npm run test -s",
"start": "concurrently npm:backend npm:frontend npm:smtp4dev",
"smtp4dev": "docker run --rm -it -p 127.0.0.1:8025:80 -p 127.0.0.1:25:25 rnwood/smtp4dev",
"build": "npm run build:frontend -s && npm run build:backend -s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/terabaud/talentbook.git"
},
"keywords": [
"teambuilding",
"socialcoding",
"mentoring"
],
"author": "Lea Rosema",
"license": "MIT",
"bugs": {
"url": "https://github.com/terabaud/talentbook/issues"
},
"homepage": "https://github.com/terabaud/talentbook#readme",
"devDependencies": {
"concurrently": "^8.2.0",
"husky": "^8.0.3",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}