-
Notifications
You must be signed in to change notification settings - Fork 5k
/
package.json
43 lines (43 loc) · 1.18 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
{
"name": "dom-ii",
"version": "0.0.1",
"scripts": {
"start": "fkill :9000 :3000 -s && concurrently \"npm:backend\" \"npm:frontend\"",
"frontend": "webpack serve --open",
"backend": "node mocks/api.js",
"test": "cross-env NODE_ENV=testing jest --verbose"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@testing-library/dom": "^8.11.3",
"@testing-library/jest-dom": "^5.16.2",
"@types/jest": "^27.4.1",
"babel-loader": "^8.2.3",
"concurrently": "^7.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.6.0",
"eslint": "^8.10.0",
"fkill-cli": "^7.1.0",
"html-loader": "^3.1.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^27.5.1",
"less": "^4.1.2",
"less-loader": "^10.2.0",
"msw": "^0.38.1",
"nodemon": "^2.0.15",
"style-loader": "^3.3.1",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bloominstituteoftechnology/DOM-II.git"
}
}