-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.39 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
{
"name": "listen-up-full-stack-exercise-javascript",
"version": "1.0.0",
"proxy": "http://localhost:7000",
"main": "src/index.js",
"dependencies": {
"@babel/core": "7.12.13",
"@babel/node": "7.12.13",
"@babel/preset-env": "7.12.13",
"@babel/preset-react": "7.12.13",
"@testing-library/jest-dom": "5.11.9",
"@testing-library/react": "11.2.5",
"axios": "0.21.1",
"concurrently": "5.3.0",
"express": "4.17.1",
"isomorphic-fetch": "3.0.0",
"jest": "26.6.0",
"msw": "0.26.1",
"nodemon": "2.0.7",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-scripts": "4.0.2",
"regenerator-runtime": "0.13.7",
"styled-components": "^5.3.0",
"supertest": "6.1.3"
},
"scripts": {
"start": "npm run dev",
"dev": "concurrently \"npm run server:dev\" \"npm run client:dev\"",
"client:dev": "react-scripts start",
"server:dev": "nodemon --exec npm run \"server:babel\" server/index.js",
"server:babel": "babel-node --presets='@babel/preset-env'",
"pretty": "npx prettier --write .",
"eslint": "npx eslint --init",
"test": "jest"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"keywords": [],
"description": "",
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"eslint": "^7.29.0",
"husky": "^6.0.0"
}
}