-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.05 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.05 KB
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
{
"name": "serge",
"main": "index.js",
"repository": "git@github.com:serge-web/serge.git",
"author": "IanMayo <ian@planetmayo.com>",
"version": "3.0.0",
"license": "Apache-2.0",
"private": true,
"engines": {
"node": "18.x"
},
"scripts": {
"start": "concurrently \"yarn start-server\" \"yarn start-client\"",
"start-client": "cd client && yarn start",
"start-server": "cd server && yarn start",
"install": "cd client && yarn install && cd ../executable && yarn install && cd ../server && yarn install && cd ../e2e/playwright_test && yarn install",
"watch": "cd client && yarn watch",
"rebuild": "cd client && yarn rebuild-client",
"develop": "concurrently \"yarn watch\" \"cd client && yarn develop\" \"yarn start-server\" \"yarn storybook\"",
"test": "cd client && yarn test",
"test-local": "cd e2e && yarn test-local",
"test-unit": "cd client && yarn test:unit",
"test-playwright": "cd e2e/playwright_test && yarn test",
"lint": "cd client && yarn lint",
"storybook": "cd client && yarn storybook",
"build-storybook": "cd client && yarn build-storybook",
"build": "cd client && yarn build",
"pkg-build": "yarn build && cd executable && yarn start",
"heroku-postbuild": "yarn build && yarn build-storybook",
"serge": "yarn start-server",
"snyk-protect": "set NODE_OPTIONS=–max_old_space_size=8192 snyk protect",
"prepare": "yarn run snyk-protect && husky install",
"precommit-msg": "echo 'Performing pre-push checks...' && exit 0"
},
"snyk": true,
"devDependencies": {
"@types/tinycolor2": "^1.4.6",
"concurrently": "^8.2.1",
"husky": "^7.0.0",
"snyk": "^1.298.1"
},
"eslintConfig": {
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"dependencies": {
"@playwright/test": "1.42.0",
"@types/node-fetch": "^2.6.11",
"fast-json-patch": "^3.1.1",
"react-resizable-panels": "^0.0.63",
"tinycolor2": "^1.6.0"
}
}