forked from outsrc/monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 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
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
{
"name": "@andreani/monorepo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"storybook": "start-storybook -p 6006",
"lint": "eslint --ext .ts,.tsx,.js packages",
"generate": "plop --plopfile .plop/plopfile.ts",
"start": "ts-node -P tsconfig.json .scripts/start.ts",
"stop": "ts-node -P tsconfig.json .scripts/stop.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"private": true,
"workspaces": [
"packages/app/*",
"packages/shared/*"
],
"devDependencies": {
"@babel/core": "^7.12.7",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@next/bundle-analyzer": "^10.0.2",
"@storybook/addon-actions": "^6.1.2",
"@storybook/addon-docs": "^6.1.2",
"@storybook/addon-essentials": "^6.1.2",
"@storybook/addon-links": "^6.1.2",
"@storybook/addon-storyshots": "^6.1.2",
"@storybook/react": "^6.1.2",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.9",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"arg": "^5.0.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.1",
"babel-plugin-module-resolver": "^4.0.0",
"dev-kong": "^0.11.0",
"eslint": "^7.14.0",
"eslint-config-standard-with-typescript": "^19.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jest-dom": "^3.2.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-standard": "^5.0.0",
"fs-extra": "^9.0.1",
"globby": "^11.0.1",
"identity-obj-proxy": "^3.0.0",
"internal-ip": "^6.2.0",
"jest": "^26.6.3",
"jest-runtime": "^26.6.3",
"local-web-server": "^4.2.1",
"next-transpile-modules": "^4.1.0",
"plop": "^2.7.4",
"pm2": "^4.5.0",
"prettier": "^2.2.0",
"react-is": "^17.0.1",
"react-test-renderer": "^17.0.1",
"replace-in-files": "^3.0.0",
"rimraf": "^3.0.2",
"sass": "^1.29.0",
"sass-loader": "^10.1.0",
"ts-jest": "^26.4.4",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
},
"dependencies": {
"next": "^10.0.2",
"react": "^17.0.1",
"react-dom": "^17.0.1"
}
}