forked from reactrewind/react-rewind
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.34 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.34 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
{
"name": "react-rewind",
"version": "1.0.0",
"description": "Time-travel debugger for React useReducer",
"main": "index.js",
"scripts": {
"lint": "eslint \"*/**/*.{js,jsx}\"",
"test": "echo \"Error: no test specified\" && exit 1",
"watch-dev": "cd src/app/ && ../../node_modules/webpack-cli/bin/cli.js --config ./webpack.config.dev.js --entry ./index.js",
"build-prod": "cd src/app/ && ../../node_modules/webpack-cli/bin/cli.js --config ./webpack.config.prod.js --entry ./index.js",
"bundle_bg": "browserify src/browser/chrome/background.js -o src/browser/chrome/devtools_bundle/bg_bundle.js",
"build_bg": "npm run bundle_bg & npm run webpack --prefix ./src/app",
"install_dep": "npm install & npm install --prefix ./src/app"
},
"repository": {
"type": "git",
"url": "https://github.com/reactrewind"
},
"author": "React Rewind",
"license": "MIT",
"devDependencies": {
"babel-eslint": "^10.0.1",
"browserify": "^16.2.3",
"eslint": "^5.14.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-react": "^7.12.4",
"styled-components": "^4.3.1",
"webpack": "^4.34.0",
"webpack-cli": "^3.3.4"
},
"dependencies": {
"escodegen": "^1.11.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"esprima": "^4.0.1",
"estraverse": "^4.2.0"
}
}