-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
33 lines (33 loc) · 1015 Bytes
/
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
{
"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",
"bundle_bg": "browserify src/browser/chrome/background.js -o src/browser/chrome/devtools_bundle/bg_bundle.js",
"build": "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"
},
"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"
}
}