-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
84 lines (84 loc) · 2.88 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "acter",
"version": "1.0.5",
"description": "The platform for coordinating action on global challenges",
"main": "index.js",
"repository": "[email protected]:acterglobal/code.git",
"author": "Damon Toal-Rossi <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": [
"apps/*",
"packages/schema",
"packages/*",
"services/*",
"tools/*"
],
"scripts": {
"dev": "yarn workspace @acter/web dev",
"build": "yarn workspace @acter/web build",
"build:web": "yarn workspace @acter/web build:next",
"start": "yarn workspace @acter/web start",
"storybook": "yarn workspace @acter/components dev",
"lint": "eslint . --ext .js,.mjs,.ts,.tsx",
"test": "dotenv jest",
"test:prepush": "yarn lint --quiet && yarn cover && yarn build",
"cover": "dotenv jest --coverage",
"husky-install": "husky install",
"clean:modules": "cli-confirm \"Are you you wan to clear all node_modules?\" && find . -name \"node_modules\" -type d -prune -exec rm -rf '{}' +",
"clean:next": "rm -rf apps/web/.next",
"clean:all": "yarn clean:next && yarn clean:modules",
"reinstall": "yarn clean:modules && yarn && yarn generate",
"generate": "yarn workspace @acter/schema build",
"db:migrate": "yarn workspace @acter/schema db:migrate",
"db:migrate:run": "yarn workspace @acter/schema db:migrate:run",
"db:migrate:prod": "yarn workspace @acter/schema db:migrate:prod",
"db:reset": "yarn workspace @acter/schema db:reset",
"db:seed": "yarn workspace @acter/schema db:seed",
"postinstall": "husky install"
},
"devDependencies": {
"@acter/eslint-config-base": "workspace:tools/eslint-config-base",
"@mdx-js/react": "1.6.22",
"@release-it/conventional-changelog": "5.1.1",
"@release-it/keep-a-changelog": "3.1.0",
"@testing-library/dom": "8.19.0",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "12.1.3",
"@testing-library/react-hooks": "8.0.1",
"@testing-library/user-event": "14.4.3",
"@trivago/prettier-plugin-sort-imports": "3.4.0",
"@types/graphql-fields": "1.3.4",
"@types/jest": "26.0.24",
"@types/markdown-draft-js": "2.2.4",
"@types/node": "18.11.3",
"@types/react": "17.0.39",
"@typescript-eslint/eslint-plugin": "5.40.1",
"@typescript-eslint/parser": "5.40.1",
"cli-confirm": "1.0.1",
"dotenv-cli": "5.1.0",
"eslint": "8.25.0",
"eslint-plugin-jest": "27.1.3",
"eslint-plugin-you-dont-need-lodash-underscore": "6.12.0",
"husky": "8.0.1",
"jest": "27.5.1",
"jest-transform-graphql": "2.1.0",
"release-it": "15.5.0",
"syncpack": "8.2.4",
"ts-jest": "27.0.4",
"ts-node": "10.9.1"
},
"browser": {
"fs": false,
"os": false,
"path": false
},
"engines": {
"node": "18.x",
"yarn": "3.2.4"
},
"resolutions": {
"webpack": "5.49.0"
},
"packageManager": "[email protected]"
}