-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.69 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
{
"name": "react-parcel-minimal-setup",
"version": "1.0.0",
"description": "React single page application with parceljs builder",
"repository": {
"type": "git",
"url": "https://github.com/alefalezza/react-parcel-minimal-setup.git"
},
"main": "dist/index.html",
"scripts": {
"start": "parcel public/index.html",
"build": "parcel build public/index.html",
"test": "jest"
},
"author": "Alessandro Falezza",
"license": "MIT",
"dependencies": {
"@material/react-button": "^0.12.1",
"@material/react-card": "^0.12.1",
"@material/react-checkbox": "^0.12.0",
"@material/react-icon-button": "^0.12.0",
"@material/react-layout-grid": "^0.12.1",
"@material/react-list": "^0.12.0",
"@material/react-material-icon": "^0.12.0",
"@material/react-select": "^0.12.1",
"@material/react-text-field": "^0.12.1",
"@material/react-typography": "^0.12.0",
"@types/react-router-dom": "^4.3.3",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"enzyme-to-json": "^3.3.5",
"jest": "^24.7.1",
"material-components-web": "^2.1.1",
"node-sass": "^4.12.0",
"parcel-bundler": "^1.12.3",
"prettier": "^1.17.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router-dom": "^5.0.0",
"tslib": "^1.9.3",
"typescript": "^3.4.5"
},
"devDependencies": {
"@types/enzyme": "^3.9.1",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/enzyme-to-json": "^1.5.3",
"@types/jest": "^24.0.12",
"@types/node": "^11.13.8",
"@types/parcel-bundler": "^1.12.0",
"@types/prettier": "^1.16.3",
"@types/react": "^16.8.15",
"@types/react-dom": "^16.8.4",
"@types/sass": "^1.16.0"
}
}