-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.55 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
{
"name": "@startup-api/react-power-strip",
"version": "0.3.0",
"description": "Startup API Power Strip JS widget and components",
"source": "src/index.js",
"scripts": {
"test": "NODE_ENV=test jest",
"test:updateSnapshots": "NODE_ENV=test jest --updateSnapshot",
"start": "webpack serve --config webpack.dev.js",
"build": "webpack --mode production --config webpack.prod.js",
"lint": "eslint src --ext .js,.jsx",
"lint:fix": "eslint --fix src --ext .js,.jsx"
},
"keywords": [],
"author": "Sergey Chernyshev <[email protected]>",
"license": "BSD",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/eslint-parser": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"babel-loader": "^8.1.0",
"eslint": "^7.13.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^4.5.0",
"jest": "^26.6.3",
"prettier": "^2.1.2",
"react-test-renderer": "^17.0.1",
"webpack": "^5.4.0",
"webpack-bundle-analyzer": "^3.9.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.3.0"
},
"dependencies": {
"config": "^3.3.2",
"react": "^17.0.1",
"react-bootstrap": "^1.4.0",
"react-dom": "^17.0.1",
"react-redux": "^7.2.2",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"regenerator-runtime": "^0.13.7"
}
}