-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.32 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.32 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
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
{
"name": "timelogging",
"version": "1.0.0",
"description": "React Time Logging",
"main": "index.js",
"engines": {
"node": "10.10.0",
"npm": "6.4.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "mocha --require @babel/polyfill --require @babel/register ./cypress/integration/*",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"eject": "react-scripts eject",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"eslint": "eslint",
"mocha": "mocha",
"nyc": "nyc",
"flow": "flow",
"sinon": "sinon",
"uuid": "uuid"
},
"author": "CodeMix",
"license": "ISC",
"dependencies": {
"flow-bin": "^0.83.0",
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-script": "^2.0.5",
"react-scripts": "^2.0.4",
"semantic-ui-react": "^0.82.5",
"sqreen": "^1.27.1"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@cypress/webpack-preprocessor": "^3.0.0",
"ajv": "^6.5.4",
"babel-loader": "^8.0.4",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"cypress": "^3.1.3",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"eslint": "^5.6.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-cypress": "^2.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-standard": "^4.0.0",
"istanbul-lib-instrument": "^3.0.0",
"mocha": "^5.2.0",
"node-fetch": "^2.2.1",
"nyc": "^13.0.1",
"sinon": "^7.1.1",
"webpack": "^4.20.2"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"node": {
"dns": "empty",
"net": "empty"
},
"repository": {
"type": "git",
"url": "git+https://github.com/steinko/timelogging.git"
},
"bugs": {
"url": "https://github.com/steinko/timelogging/issues"
},
"homepage": "https://github.com/steinko/timelogging#readme"
}