-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 2.48 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
{
"name": "ateoat-main",
"description": "ateoat main package",
"version": "0.4.0",
"author": "ateoat team",
"private": true,
"scripts": {
"postinstall": "concurrently -n client,server \"npm run install:client\" \"npm run install:server\"",
"install:client": "cd client && npm install",
"install:server": "cd server && npm install",
"lint": "concurrently -n client,server \"npm run lint:client\" \"npm run lint:server\"",
"lint:client": "cd client && npm run lint",
"lint:server": "cd server && npm run lint",
"build": "concurrently -n client,server \"npm run build:client\" \"npm run build:server\"",
"build:client": "cd client && npm run build",
"build:server": "cd server && npm run build",
"start": "concurrently --kill-others -n client,server \"npm run start:client\" \"npm run start:server\"",
"start:client": "cd client && npm run start",
"start:server": "cd server && npm run start",
"setup": "concurrently -n client,server \"npm run setup:client\" \"npm run setup:server\"",
"setup:client": "cd client && npm run setup",
"setup:server": "cd server && npm run setup",
"util:buildvars": "ts-node utils/buildvars",
"util:blogpost:generate": "ts-node utils/blog-version-notes",
"util:changelog:generate": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"util:changelog:generate:current": "conventional-changelog -p angular -o CHANGELOG-current.md -r 2",
"util:changelog:commit": "git commit CHANGELOG.md CHANGELOG-current.md -m \"Update changelog\" || true",
"util:dirtycheck": "ts-node utils/dirtycheck",
"util:version:reversion": "ts-node utils/postversion.reversion",
"preversion": "npm run util:dirtycheck && npm run lint && npm run build",
"version": "npm run util:changelog:generate && npm run util:changelog:generate:current && npm run util:changelog:commit && npm run util:version:reversion && npm run push",
"push": "git push && git push --tags",
"bump:patch": "npm version patch -m \"chore(release): Patch %s\"",
"bump:minor": "npm version minor -m \"chore(release): Minor %s\"",
"bump:major": "npm version major -m \"chore(release): Major %s\"",
"testclient": "ts-node ./utils/headless-runner/index"
},
"devDependencies": {
"@types/node": "^20.2.5",
"concurrently": "^8.1.0",
"conventional-changelog-cli": "^2.2.2",
"fs-extra": "^11.1.1",
"ts-node": "^10.9.1"
},
"dependencies": {
"minimist": "^1.2.8",
"uuid": "^9.0.0",
"wretch": "^2.7.0"
}
}