-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.72 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.72 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
49
50
51
52
53
54
55
{
"name": "react-boiler-plate",
"version": "1.0.0",
"description": "Starting template for react.js",
"main": "index.js",
"repository": "https://github.com/kane-menicou/react-boiler-plate",
"author": "Kane Menicou",
"license": "proprietary",
"private": true,
"scripts": {
"start": "webpack serve --config build/webpack.dev.conf.js --mode development --open --progress --hot --inline",
"build": "webpack --config build/webpack.prod.conf.js --mode production",
"unit": "jest --config build/tests/jest.unit.conf.js",
"e2e": "jest --config build/tests/jest.e2e.conf.js"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13",
"@types/enzyme": "^3.10.8",
"@types/jest": "^26.0.22",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"css-loader": "^5.2.0",
"enzyme": "^3.11.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"jest": "^26.6.3",
"node-sass": "^5.0.0",
"puppeteer": "^8.0.0",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"tslint": "^5.0.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-loader": "^3.5.4",
"tslint-react": "^5.0.0",
"typescript": "^4.2.4",
"webpack": "^5.31.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3",
"webpack-notifier": "^1.13.0"
},
"dependencies": {
"core-js": "^3.10.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-loader": "^4.13.0",
"regenerator-runtime": "^0.13.7"
}
}