-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.73 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.73 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
56
{
"name": "react.template",
"version": "0.42.0",
"description": "react application template",
"main": "index.js",
"scripts": {
"lint": "eslint --ext .js --ext .jsx src/ features/",
"build": "webpack --mode production --config webpack.production.js",
"server": "webpack-dev-server --mode development --config webpack.development.js",
"features": "NODE_ENV='test' cucumber-js npx cucumber-js --require-module @babel/register features/app.feature",
"test": "jest"
},
"keywords": [],
"author": "Basavanagowda Kanur <basavanagowda@gmail.com>",
"license": "Beerware",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@babel/register": "^7.9.0",
"babel-loader": "^8.1.0",
"chai": "^4.2.0",
"chromedriver": "^80.0.0",
"copy-webpack-plugin": "^5.1.1",
"cucumber": "^6.0.5",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"html-webpack-plugin": "^4.2.0",
"html-webpack-tags-plugin": "^2.0.17",
"jest": "^25.4.0",
"selenium-webdriver": "^4.0.0-alpha.7",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.2.2",
"write-file-webpack-plugin": "^4.5.1"
},
"dependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"jest": {
"verbose": true,
"setupFilesAfterEnv": [
"<rootDir>src/setupTests.js"
]
}
}