-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.89 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
{
"name": "fractalmw",
"version": "0.1.0",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@graphql-codegen/cli": "1.17.8",
"@graphql-codegen/core": "^1.17.8",
"@graphql-codegen/introspection": "1.17.8",
"@graphql-codegen/typescript": "1.17.8",
"@graphql-codegen/typescript-resolvers": "1.17.8",
"@types/faker": "^5.1.0",
"@types/jest": "^26.0.13",
"@types/node": "^14.11.2",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.6.0",
"concurrently": "^5.3.0",
"dotenv": "^8.2.0",
"env-cmd": "^10.1.0",
"eslint": "7",
"eslint-config-standard-with-typescript": "^18.0.2",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-node": "11",
"eslint-plugin-promise": "4",
"eslint-plugin-react": "^7.21.2",
"eslint-plugin-standard": "4",
"git-commit-msg-linter": "^2.5.3",
"husky": "^4.2.5",
"jest": "^26.4.2",
"lint-staged": "^10.2.13",
"ts-jest": "^26.3.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"scripts": {
"store:dev": "yarn workspace @fractalmw/store exec yarn dev",
"store:clean": "yarn workspace @fractalmw/store exec yarn clean",
"store:build": "yarn workspace @fractalmw/store exec yarn build",
"gql:generate": "graphql-codegen --config codegen.yml",
"test": "env-cmd jest --watchAll --silent --noStackTrace --runInBand --passWithNoTests",
"test:verbose": "jest --watchAll --runInBand",
"test:unit": "yarn test -c jestUnitConfig.js",
"test:integration": "yarn test -c jestIntegrationConfig.js",
"test:staged": "jest --passWithNoTests --findRelatedTests",
"test:ci": "jest --silent --noStackTrace --runInBand --coverage --passWithNoTests"
},
"main": "index.js",
"repository": "[email protected]:brvnonascimento/fractalmw",
"author": "brvnonascimento <[email protected]>",
"license": "MIT"
}