-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.34 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.34 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
48
{
"name": "profile-app",
"version": "0.0.1",
"description": "Profile App",
"main": "index.js",
"author": "arelra@users.noreply.github.com",
"license": "MIT",
"private": true,
"scripts": {
"build": "webpack --progress --profile --colors --mode production",
"test": "jest",
"test:watch": "jest --watch",
"start": "webpack-dev-server --mode development"
},
"dependencies": {
"@rebass/forms": "^4.0.6",
"@rebass/preset": "^4.0.5",
"emotion-theming": "^10.0.27",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"rebass": "^4.0.7",
"styled-components": "^5.1.1"
},
"devDependencies": {
"@types/enzyme": "^3.10.5",
"@types/jest": "^26.0.8",
"@types/node": "^14.0.27",
"@types/react": "^16.9.44",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.5",
"@types/rebass": "^4.0.6",
"@types/rebass__forms": "^4.0.2",
"@types/styled-components": "^5.1.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.5.0",
"html-webpack-plugin": "^4.3.0",
"jest": "^26.2.2",
"react-test-renderer": "^16.13.1",
"ts-jest": "^26.1.4",
"ts-loader": "^8.0.2",
"typescript": "^3.9.7",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}