-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.16 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
{
"name": "lorem-i",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/PasichnykTetiana/lorem-i.git",
"author": "Tetiana",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.0.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.32.2",
"typescript": "*"
},
"scripts": {
"start": "concurrently 'yarn:start:server' 'yarn:start:website'",
"netlify": "netlify dev",
"start:server": "yarn workspace @lorem-i/server run dev",
"start:website": "yarn workspace @lorem-i/website run start",
"fix": " yarn prettier --write packages && yarn lint:scripts . --fix packages/**/*.{ts,tsx}",
"prettier": "node_modules/.bin/prettier",
"lint:scripts": "node_modules/.bin/eslint",
"build": "yarn workspace @lorem-i/website build"
},
"devDependencies": {
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "2.8.4"
}
}