-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.42 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.42 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
{
"name": "babbel-fe-coding-challenge",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --config jest.json",
"test:watch": "jest --config jest.json --watchAll",
"start": "concurrently --kill-others \"npm run start:server\" \"npm run start:app\"",
"start:server": "babel-node api/index.js",
"start:app": "webpack-dev-server --hot"
},
"author": "Babbel (Lesson Nine GmbH)",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/node": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/runtime": "^7.12.5",
"@pmmmwh/react-refresh-webpack-plugin": "^0.3.3",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.1",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"concurrently": "^5.3.0",
"css-loader": "^3.6.0",
"express": "^4.17.1",
"html-webpack-plugin": "^4.5.1",
"jest": "^26.6.3",
"react-refresh": "^0.8.3",
"react-test-renderer": "^16.14.0",
"sass": "^1.32.5",
"sass-loader": "^9.0.3",
"style-loader": "^1.3.0",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"classnames": "^2.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}