-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.88 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
{
"private": true,
"scripts": {
"dev": "node ./server",
"typecheck": "tsc --noEmit",
"prettier:base": "prettier --ignore-path ./.eslintignore \"**/*.{html,css,json,md}\"",
"prettier": "yarn prettier:base --check",
"prettier:fix": "yarn prettier:base --write",
"eslint": "eslint \"**/*.{js,jsx,ts,tsx}\"",
"eslint:fix": "yarn eslint --fix",
"lint": "run-p --print-label typecheck prettier eslint",
"storybook": "cross-env COVERAGE=true start-storybook -p 6006",
"storybook:ci": "yarn storybook -p 6007",
"test": "cross-env COVERAGE=true cypress open",
"test:run": "cross-env COVERAGE=true cypress run --browser chrome --headless --config baseUrl=http://localhost:6007",
"test:ci": "start-server-and-test storybook:ci http://localhost:6007 test:run",
"test:visual:install": "docker pull yukinying/chrome-headless-browser",
"test:visual": "yarn loki test --chromeDockerImage yukinying/chrome-headless-browser",
"test:visual:filter": "loki test --storiesFilter",
"test:visual:update": "loki update",
"test:visual:approve": "loki approve",
"test:visual:ci:base": "yarn test:visual --reactPort 6007",
"test:visual:ci": "start-server-and-test storybook:ci http://localhost:6007 test:visual:ci:base",
"ci": "yarn lint && yarn test:ci",
"build": "next build && next export",
"build:analyze": "cross-env ANALYZE=true yarn build",
"start": "cross-env NODE_ENV=production PORT=3001 node ./server",
"serve": "cross-env NODE_ENV=build PORT=3001 node ./server"
},
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"axios": "^0.20.0",
"d3": "^6.1.1",
"next": "^9.5.3",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@cypress/code-coverage": "^3.8.1",
"@cypress/webpack-preprocessor": "^5.4.5",
"@loki/create-async-callback": "^0.25.0",
"@next/bundle-analyzer": "^9.5.3",
"@storybook/addon-actions": "^6.0.21",
"@storybook/addon-essentials": "^6.0.21",
"@storybook/addon-links": "^6.0.21",
"@storybook/react": "^6.0.21",
"@types/d3": "^5.7.2",
"@types/react": "^16.9.49",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"cross-env": "^7.0.2",
"cypress": "^5.2.0",
"cypress-plugin-snapshots": "^1.4.4",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-cypress": "^2.11.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.2",
"express": "^4.17.1",
"http-proxy-middleware": "^1.0.5",
"loki": "^0.25.1",
"lowdb": "^1.0.0",
"morgan": "^1.10.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"start-server-and-test": "^1.11.4",
"typescript": "^4.0.3"
}
}