-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
82 lines (82 loc) · 2.84 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
{
"name": "chpokify",
"description": "The project management tool designed for agile teams",
"homepage": "https://chpokify.com",
"version": "0.0.1",
"repository": "https://gitlab.com/chpokify/main.git",
"author": "borodulin <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"frontend",
"server",
"figma",
"migrations",
"packages/*"
],
"nohoist": [
"**/frontend",
"**/frontend/**"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"scripts": {
"frontend": "yarn workspace @chpokify/frontend",
"server": "yarn workspace @chpokify/server",
"figma": "yarn workspace @chpokify/figma",
"clear:modules": "rm -rf ./packages/*/node_modules && rm -rf ./node_modules && rm -rf ./server/node_modules && rm -rf ./frontend/node_modules && rm -rf figma/node_modules",
"commit": "git-cz",
"client:build": "yarn frontend run build",
"client:start": "source scripts/load_env.sh && yarn frontend run start",
"client:dev": "source scripts/load_env.sh && yarn frontend run dev",
"server:demon": "yarn server run demon",
"server:dev": "docker-compose up --build --remove-orphans",
"server:build": "webpack --config webpack.config.js",
"server:start": "node ./server/build/index.js",
"figma:import": "yarn figma run start",
"storybook": "yarn frontend run storybook",
"storybook:build": "yarn frontend run storybook:build"
},
"devDependencies": {
"@babel/cli": "7.12.10",
"@babel/core": "7.12.10",
"@babel/plugin-proposal-class-properties": "7.13.0",
"@babel/plugin-proposal-optional-chaining": "7.13.12",
"@babel/plugin-transform-typescript": "7.12.1",
"@babel/preset-env": "7.13.15",
"@babel/preset-typescript": "7.13.0",
"@sentry/webpack-plugin": "1.15.0",
"@typescript-eslint/eslint-plugin": "3.9.1",
"@typescript-eslint/parser": "3.10.0",
"babel-loader": "8.2.2",
"babel-plugin-module-resolver": "4.0.0",
"commitizen": "4.1.2",
"cz-conventional-changelog": "3.2.0",
"eslint": "7.32.0",
"eslint-config-airbnb": "18.1.0",
"eslint-plugin-better-styled-components": "1.1.2",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-import-helpers": "1.0.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.19.0",
"eslint-plugin-react-hooks": "2.5.0",
"husky": "4.2.5",
"pm2": "4.5.0",
"prettier-eslint": "9.0.1",
"prettier-eslint-cli": "5.0.0",
"prettier-stylelint": "0.4.2",
"stylelint": "13.2.1",
"stylelint-config-idiomatic-order": "8.1.0",
"stylelint-config-recommended-scss": "4.2.0",
"stylelint-config-standard": "20.0.0",
"stylelint-scss": "3.16.0",
"webpack": "5.10.1",
"webpack-cli": "4.3.1",
"webpack-node-externals": "2.5.2"
}
}