-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
113 lines (113 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
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "flow",
"version": "1.0.0",
"description": "A tab management chrome extension build by the Potato team.",
"scripts": {
"start": "react-scripts start",
"test": "jest --silent --coverage",
"build-dev": "webpack --mode development",
"build-prod": "webpack --mode production",
"report": "nyc report"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cse112-sp20/Team-Potato.git"
},
"author": "Team Potato",
"license": "ISC",
"bugs": {
"url": "https://github.com/cse112-sp20/Team-Potato/issues"
},
"homepage": "https://github.com/cse112-sp20/Team-Potato#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@babel/register": "^7.9.0",
"@istanbuljs/nyc-config-babel": "^3.0.0",
"@testing-library/jest-dom": "^5.8.0",
"@testing-library/react": "^10.0.4",
"babel-loader": "^8.1.0",
"babel-plugin-istanbul": "^6.0.0",
"chai": "^4.2.0",
"copy-webpack-plugin": "^5.1.1",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.3.0",
"husky": "4.2.5",
"jest": "^26.0.1",
"jest-webextension-mock": "^3.6.0",
"lint-staged": "10.2.2",
"mocha": "^7.2.0",
"nyc": "^15.0.1",
"prettier": "2.0.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"lint-staged": {
"*.js": [
"eslint --fix"
],
"*.{json,md,scss,yaml,yml}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"moduleNameMapper": {
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js"
},
"setupFiles": [
"jest-webextension-mock"
]
},
"nyc": {
"extension": [
".js",
".jsx"
],
"reporter": [
"text",
"lcov",
"json"
],
"sourceMap": false,
"instrument": false
},
"dependencies": {
"babel-plugin-transform-export-extensions": "^6.22.0",
"better-docs": "^2.0.1",
"bootstrap": "^4.5.0",
"chromedriver": "^81.0.0",
"debug": "^4.1.1",
"gulp": "^4.0.2",
"gulp-shell": "^0.8.0",
"jsdoc": "^3.6.4",
"prop-types": "^15.7.2",
"psl": "^1.8.0",
"react": "^16.13.1",
"react-beautiful-dnd": "^13.0.0",
"react-bootstrap": "^1.0.1",
"react-compound-timer": "^1.2.0",
"react-dom": "^16.13.1",
"react-icons": "^3.10.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.4.1",
"react-slider": "^1.0.7",
"selenium-webdriver": "^4.0.0-alpha.7",
"uuid": "^8.0.0"
}
}