-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
99 lines (98 loc) · 2.99 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "zmetric",
"version": "0.1.0",
"homepage": "./",
"private": true,
"main": "public/electron.js",
"dependencies": {
"@babel/runtime": "^7.4.3",
"axios": "^0.18.0",
"axios-mock-adapter": "^1.16.0",
"electron-is-dev": "^1.1.0",
"expect": "^24.7.1",
"jest-mock-axios": "^3.0.0",
"jira-client": "^6.7.1",
"moment": "^2.24.0",
"prop-types": "latest",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-scripts": "3.0.1",
"recharts": "^1.5.0",
"regression": "^2.0.1",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"semantic-ui-calendar-react": "^0.15.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.87.1",
"storybook-addon-specifications": "^2.1.2"
},
"scripts": {
"electron-dev": "concurrently \"BROWSER=none yarn start\" \"wait-on http://localhost:3000 && electron .\"",
"semantic-ui": "cp -R ./node_modules/semantic-ui-css ./.storybook/",
"storybook": "yarn semantic-ui && start-storybook -s ./.storybook -p 6006",
"storybook:build": "yarn semantic-ui && build-storybook -s ./.storybook/",
"storybook:local-server:start": "http-server --silent -p 6006 storybook-static &",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"test:ci": "yarn storybook:build && yarn storybook:local-server:start && yarn test:coverage --testResultsProcessor ./node_modules/jest-sonar-reporter",
"test:coverage": "yarn test --coverage",
"audit": "node scripts/audit.js",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls",
"eject": "react-scripts eject",
"lint": "eslint src",
"predeploy": "yarn build",
"deploy": "surge ./build",
"deploy-electron": "yarn build && electron-builder"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@babel/core": "^7.4.3",
"@storybook/addon-storyshots": "^5.0.10",
"@storybook/addon-storyshots-puppeteer": "^5.0.10",
"@storybook/react": "^5.0.10",
"babel-loader": "^8.0.5",
"concurrently": "^4.1.0",
"coveralls": "^3.0.3",
"cz-conventional-changelog": "2.1.0",
"electron-builder": "^20.40.2",
"electron": "^5.0.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.11.2",
"http-server": "^0.11.1",
"jest-sonar-reporter": "^2.0.0",
"require-context.macro": "^1.0.4",
"semantic-release": "^15.13.12",
"typescript": "^3.4.5",
"wait-on": "^3.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!src/index.js",
"!src/Actions.js",
"!src/serviceWorker.js",
"!src/setupTests.js",
"!scripts/*.js",
"!src/**/*.stories.{js,jsx}"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
}
}
}