-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.25 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
73
{
"name": "directory-browser-teleport",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:sandylcruz/directory-browser-teleport.git",
"author": "Sandy Cruz <[email protected]>",
"license": "MIT",
"browserslist": "> 0.25%, not dead",
"scripts": {
"commit": "cz",
"eslint": "eslint ./",
"start:client": "webpack --mode development --watch --config ./webpack.config.js",
"start:server": "nodemon",
"start": "NODE_ENV=development concurrently -n \"frontend,backend\" \"yarn start:client\" \"yarn start:server\"",
"test": "jest",
"tsc": "tsc"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.4",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@testing-library/react": "^12.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.1",
"@types/livereload": "^0.9.1",
"@types/node": "^16.7.10",
"@types/react": "^17.0.20",
"@types/react-dom": "^17.0.9",
"@types/react-router-dom": "^5.1.8",
"@types/styled-components": "^5.1.14",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"babel-loader": "^8.2.2",
"commitizen": "^4.2.4",
"concurrently": "^6.2.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"express": "^4.17.1",
"jest": "^27.1.0",
"livereload": "^0.9.3",
"msw": "^0.35.0",
"nodemon": "^2.0.12",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.3.0",
"styled-components": "^5.3.1",
"ts-node": "^10.2.1",
"typescript": "^4.4.2",
"webpack": "^5.52.0",
"webpack-cli": "^4.8.0",
"whatwg-fetch": "^3.6.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"cookie-parser": "^1.4.5",
"core-js": "3",
"ulid": "^2.3.0"
}
}