forked from darkmavis1980/react-jest-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.41 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
{
"name": "react-boilerplate",
"version": "0.10.0",
"description": "Simple boilerplate for React with Jest support",
"main": "index.js",
"scripts": {
"start": "./node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode development",
"build": "./node_modules/webpack/bin/webpack.js --mode production",
"start:watch": "./node_modules/webpack/bin/webpack.js --mode development --watch",
"test": "./node_modules/jest/bin/jest.js --env=jsdom --coverage",
"test:watch": "./node_modules/jest/bin/jest.js --watch --env=jsdom --verbose",
"test:watch:log": "TERM=dumb ./node_modules/jest/bin/jest.js --watch --env=jsdom --verbose",
"coverage": "npm test -- --coverage",
"eslint": "eslint ./src",
"profile": "./node_modules/webpack/bin/webpack.js --profile --json > stats.json",
"profile:analyze": "./node_modules/.bin/webpack-bundle-analyzer ./stats.json"
},
"keywords": [
"react"
],
"homepage": "https://github.com/darkmavis1980/react-jest-boilerplate",
"repository": {
"type": "git",
"url": "https://github.com/darkmavis1980/react-jest-boilerplate.git"
},
"author": "Alessio Michelini",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.0.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"enzyme-to-json": "^3.6.1",
"eslint": "^7.15.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.21.5",
"html-webpack-plugin": "^4.5.0",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"jest-environment-jsdom": "^26.6.2",
"jest-transform-stub": "^2.0.0",
"mini-css-extract-plugin": "^1.3.3",
"react-test-renderer": "^17.0.1",
"redux-mock-store": "^1.5.4",
"sass": "^1.30.0",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"webpack": "^5.11.0",
"webpack-bundle-analyzer": "^4.3.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^4.0.0-beta.0"
},
"dependencies": {
"prop-types": "^15.7.2",
"query-string": "^6.13.7",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0"
}
}