-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
72 lines (72 loc) · 2.44 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
{
"name": "reactjs-fullstack-tdd-kata",
"description": "ReactJS Hooks with GraphQL TDD kata",
"main": "index.js",
"scripts": {
"build": "webpack --mode production",
"start": "webpack-dev-server --open --mode development",
"start-service": "yarn --cwd src/server start-service",
"test-isolateComponents-mocha": "mocha -r @babel/register src/test/client/isolate-component-mocha/*.spec.js -w",
"test-rtl-jest": "jest src/test/client/react-testing-lib-jest/*.spec.js",
"test-server": "mocha -r @babel/register src/test/server/*.spec.js -w",
"kill-port": "lsof -i :4000 -t | xargs kill && pkill node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dschinkel/reactjs-fullstack-tdd-kata.git"
},
"author": "Dave Schinkel",
"license": "ISC",
"homepage": "https://github.com/dschinkel/reactjs-fullstack-tdd-kata#readme",
"dependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.9",
"@babel/register": "^7.17.7",
"@babel/runtime": "^7.17.9",
"@types/node": "^17.0.29",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.18.0",
"express-graphql": "^0.12.0",
"graphql": "^16.4.0",
"npm": "^8.8.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"superagent": "^7.1.3"
},
"devDependencies": {
"@babel/plugin-proposal-export-default-from": "^7.16.7",
"@babel/plugin-proposal-object-rest-spread": "^7.17.3",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@jest/globals": "^28.0.2",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.1.1",
"@testing-library/react-hooks": "^8.0.0",
"@typescript-eslint/parser": "^4.12.0",
"babel-loader": "^8.2.2",
"chai": "^4.3.6",
"eslint": "^8.14.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-watch": "^8.0.0",
"html-loader": "^3.1.0",
"html-webpack-plugin": "^5.5.0",
"isolate-react": "^2.1.0",
"jest": "^28.0.2",
"jest-dom": "^4.0.0",
"jest-environment-jsdom": "^28.0.2",
"jsdom": "^19.0.0",
"jsdom-global": "^3.0.2",
"mocha": "^9.2.2",
"prettier": "^2.6.2",
"supertest": "^6.2.3",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1"
}
}