-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.13 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
{
"name": "applied-javascript",
"version": "0.0.1",
"main": "index.js",
"scripts": {
"start": "fkill :5000 :3000 -s && concurrently \"npm:backend\" \"npm:frontend\"",
"frontend": "webpack serve --open",
"backend": "node src/mocks/api.js",
"test": "cross-env NODE_ENV=testing jest --watchAll --verbose --forceExit --silent"
},
"devDependencies": {
"@babel/core": "7.14.6",
"@babel/plugin-transform-runtime": "7.14.5",
"@babel/preset-env": "7.14.7",
"@testing-library/dom": "8.0.0",
"@testing-library/jest-dom": "5.14.1",
"@types/jest": "26.0.23",
"babel-loader": "8.2.2",
"concurrently": "6.2.0",
"cross-env": "7.0.3",
"eslint": "7.29.0",
"fkill-cli": "6.1.0",
"html-loader": "2.1.2",
"html-webpack-plugin": "5.3.2",
"jest": "26.6.3",
"msw": "0.29.0",
"webpack": "5.40.0",
"webpack-cli": "4.7.2",
"webpack-dev-server": "3.11.2"
},
"dependencies": {
"axios": "0.21.1",
"cors": "2.8.5",
"express": "4.17.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LambdaSchool/web-sprint-challenge-applied-javascript.git"
}
}