This repository has been archived by the owner on Jul 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.54 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
{
"name": "react-ws",
"version": "0.0.1",
"description": "React test project",
"repository": {
"type": "git",
"url": "TBD"
},
"author": "",
"license": "ISC",
"scripts": {
"start:prod": "webpack --config webpack.production.config.js && node server.js",
"start:dev": "webpack && node server.js",
"test": "jest --coverage",
"test:cov": "jest --coverage",
"test:codecov": "jest && codecov",
"test:lint": "eslint ./modules --ext .js --ext .jsx --ignore-path .gitignore --cache"
},
"comments": {
"jest:collectCoverageOnlyFrom key is needed to exclude garbage from coverage report and it does not support wildcard": true,
"jest:collectCoverage must be set to true, if collectCoverageOnlyFrom is in use, otherwise things fail if you run jest without coverage": true,
"jest:it eventually means that jest always run with coverage": true
},
"jest": {
"setupTestFrameworkScriptFile": "./setup-jasmine-env.js",
"collectCoverageOnlyFrom": {
"./modules/apitokens/ApiTokenBox.js": true,
"./modules/webhooks/Webhook.js": true,
"./modules/webhooks/WebhookEditor.js": true,
"./modules/webhooks/WebhookList.js": true,
"./modules/utils/HomeRestClient.js": true,
"./modules/components/LoginButton.js": true,
"./modules/components/LogoutButton.js": true,
"./modules/components/WaitingButton.js": true,
"./modules/Home.js": true
},
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react/",
"<rootDir>/node_modules/react-dom/",
"<rootDir>/node_modules/react-bootstrap/",
"<rootDir>/node_modules/react-addons-test-utils/",
"<rootDir>/node_modules/jasmine-reporters"
]
},
"dependencies": {
"body-parser": "^1.14.1",
"compression": "^1.6.2",
"cookie-parser": "^1.4.3",
"express": "^4.13.3",
"http-status-codes": "^1.0.6",
"if-env": "^1.0.0",
"log4js": "^0.6.36",
"react": "^15.1.0",
"react-bootstrap": "^0.29.4",
"react-dom": "^15.1.0",
"react-router": "^2.4.1",
"request": "^2.72.0",
"serve-favicon": "^2.3.0"
},
"devDependencies": {
"babel-core": "^6.9.1",
"babel-eslint": "^6.0.4",
"babel-jest": "^12.1.0",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"eslint": "^2.11.1",
"eslint-plugin-react": "^5.1.1",
"jest-cli": "^12.1.1",
"jasmine-reporters": "^2.1.1",
"react-addons-test-utils": "^15.1.0",
"webpack": "^1.13.1",
"webpack-node-externals": "^1.2.0"
}
}