-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
51 lines (51 loc) · 1.75 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
{
"name": "pictogrammers.com",
"version": "2.0.0",
"homepage": "https://pictogrammers.com",
"license": "MIT",
"repository": "github:Pictogrammers/pictogrammers.com",
"author": "Michael Irigoyen <[email protected]>",
"contributors": [
"Michael Irigoyen <[email protected]>",
"Austin Andrews <[email protected]>",
"Quentin Stoeckel <[email protected]>",
"Andrej Sharapov <[email protected]>"
],
"engines": {
"node": "18.x"
},
"workspaces": [
"api",
"client"
],
"scripts": {
"build": "NODE_ENV=production npm run build --workspaces",
"certs:mac": "./.dev/create-certs.sh",
"certs:win": "./.dev/create-certs.bat",
"dev": "concurrently -c auto npm:dev:framework npm:dev:api npm:dev:client",
"dev:api": "npm run dev --workspace=api",
"dev:client": "npm run dev --workspace=client",
"dev:framework": "docker-compose -f ./.dev/docker-compose.yml up",
"dev:framework:down": "docker-compose -f ./.dev/docker-compose.yml down",
"lint": "concurrently -c auto npm:lint:api npm:lint:client npm:lint:style",
"lint:js": "concurrently -c auto npm:lint:api npm:lint:client",
"lint:api": "eslint api --ext .mjs,.js,.ts",
"lint:client": "eslint client --ext .mjs,.js,.jsx,.ts,.tsx",
"lint:style": "npm run lint:style --workspace=client",
"prepare": "husky install"
},
"dependencies": {
"dotenv": "~16.3.1"
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.4.19",
"@types/node": "~18.14.6",
"concurrently": "~8.2.1",
"eslint": "~8.48.0",
"eslint-config-next": "~13.4.19",
"eslint-plugin-sort-destructure-keys": "~1.5.0",
"husky": "~8.0.3",
"serve": "~14.2.1",
"typescript": "~5.1.6"
}
}