-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.61 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
{
"name": "react-template",
"version": "1.0.0",
"description": "A personnal boilerplate to quickly start react project",
"main": "index.js",
"scripts": {
"test": "jest",
"dev": "webpack serve --config webpack.dev.js",
"buid": "webpack --config webpack.prod.js",
"new-comp": "yo new-react-component"
},
"repository": {
"type": "git",
"url": "https://github.com/robinNavas/react-template.git"
},
"keywords": [
"react",
"boilerplate"
],
"author": "Robin Navas",
"license": "ISC",
"bugs": {
"url": "https://github.com/robinNavas/react-template/issues"
},
"homepage": "https://github.com/robinNavas/react-template#readme",
"devDependencies": {
"@babel/cli": "^7.13.0",
"@babel/core": "^7.13.8",
"@babel/preset-env": "^7.13.9",
"@babel/preset-react": "^7.12.13",
"@types/jest": "^26.0.20",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"@types/react-test-renderer": "^17.0.1",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"css-loader": "^5.1.1",
"html-webpack-plugin": "^5.3.0",
"jest": "^26.6.3",
"mini-css-extract-plugin": "^1.3.9",
"postcss": "^8.2.7",
"postcss-loader": "^5.1.0",
"postcss-preset-env": "^6.7.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-test-renderer": "^17.0.1",
"sass": "^1.32.8",
"sass-loader": "^11.0.1",
"ts-jest": "^26.5.3",
"ts-loader": "^8.0.17",
"typescript": "^4.2.3",
"webpack": "^5.24.1",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"@babel/polyfill": "^7.12.1"
}
}