-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
96 lines (96 loc) · 2.77 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
{
"name": "react-test-buffet",
"version": "4.0.0",
"description": "Complete example of building UI with TDD and React",
"keywords": [
"react",
"tdd",
"testing",
"unit",
"acceptance",
"mocha",
"chai",
"sinon",
"selenium",
"webdriverio",
"coverage",
"istanbul",
"nyc",
"docker"
],
"repository": {
"type": "git",
"url": "[email protected]:NiGhTTraX/react-test-buffet.git"
},
"author": "Andrei Picus",
"license": "MIT",
"scripts": {
"test": "./tests/run.sh",
"test:node": "NODE_ENV=coverage nyc npm run _test:node",
"test:node:watch": "mocha --opts tests/node/mocha.watch.opts 'tests/node/**/*.spec.js'",
"_test:node": "mocha --opts tests/node/mocha.opts 'tests/node/**/*.spec.js'",
"test:node:debug": "mocha --opts tests/node/mocha.debug.opts 'tests/node/**/*.spec.js'",
"test:gui": "./tests/gui/run.sh",
"test:gui:debug": "./tests/gui/debug.sh",
"_test:gui": "mocha --opts tests/gui/mocha.opts tests/gui/specs",
"_test:gui:debug": "mocha --opts tests/gui/mocha.debug.opts tests/gui/specs",
"_test:gui:debug:selenium": "./tests/gui/debug-selenium.sh",
"lint": "eslint --ext js --ext jsx .",
"start": "./start.sh",
"_start": "webpack-dev-server --hot --config src/webpack.config.dev.js",
"stop": "docker-compose down"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": "eslint"
},
"dependencies": {
"classnames": "~2.2.5",
"prop-types": "~15.7.0",
"react": "~16.8.0",
"react-dom": "~16.8.0",
"todomvc-app-css": "~2.2.0"
},
"devDependencies": {
"@babel/core": "~7.4.0",
"@babel/plugin-proposal-class-properties": "~7.4.0",
"@babel/plugin-proposal-object-rest-spread": "~7.4.0",
"@babel/polyfill": "~7.4.0",
"@babel/preset-env": "~7.4.0",
"@babel/preset-react": "~7.0.0",
"@babel/register": "~7.4.0",
"@nighttrax/eslint-config-jsx": "~1.0.0",
"babel-loader": "~8.0.0",
"babel-plugin-istanbul": "~5.1.0",
"chai": "~4.2.0",
"css-loader": "~3.0.0",
"eslint": "~5.16.0",
"eslint-plugin-import": "~2.18.0",
"eslint-plugin-jsx-a11y": "~6.2.0",
"eslint-plugin-react": "~7.14.0",
"express": "~4.17.0",
"husky": "~3.0.0",
"jquery": "~3.4.0",
"jsdom": "~15.1.0",
"lint-staged": "~9.0.0",
"lodash.isequal": "~4.5.0",
"lodash.merge": "~4.6.0",
"mocha": "~6.1.0",
"mugshot": "~0.3.2",
"mugshot-looks-same": "~1.0.0",
"mugshot-webdriverio": "~1.0.0",
"nyc": "~13.3.0",
"react-hot-loader": "~4.12.0",
"sinon": "~7.3.0",
"sinon-chai": "~3.3.0",
"style-loader": "~0.23.0",
"webdriverio": "~4.14.0",
"webpack": "~4.35.0",
"webpack-cli": "~3.3.0",
"webpack-dev-server": "~3.7.0"
}
}