forked from mobxjs/mobx-devtools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 5.35 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"scripts": {
"bootstrap": "npm i && lerna bootstrap",
"publish-packages": "npm run bootstrap ; lerna run build && node scripts/bump-version-push-publish",
"build": "lerna run build && npm run build:chrome && npm run build:firefox",
"build:frontend": "cd packages/frontend && npm run build",
"tab:frontend": "cd packages/frontend && ttab -t 'Front End' npm run dev",
"build:tools": "cd packages/tools && npm run build",
"tab:playground": "ttab -t 'Play Ground' npm run start-playground-plain",
"open:playgroundPage": "open 'http://localhost:8082/'",
"tab:start": "run-s tab:frontend tab:playground open:playgroundPage",
"start-new": "npm run build:frontend && npm run start-playground-plain",
"start-playground": "cross-env NODE_ENV=development webpack-dev-server --config packages/playground/webpack.config.js",
"start-playground-plain": "cross-env NODE_ENV=development cross-env PLAIN_DEVTOOL=true webpack-dev-server --config packages/playground/webpack.config.js",
"start-playground-electron": "cd packages/playground && npm run start-electron",
"submodules": "git submodule update --init ; git submodule foreach npm i",
"start:chrome": "cross-env NODE_ENV=development cross-env TARGET_BROWSER=chrome node scripts/webextension/dev-server.js",
"start:chrome-debug-connection": "cross-env DEBUG_CONNECTION=true cross-env NODE_ENV=development TARGET_BROWSER=chrome node scripts/webextension/dev-server.js",
"build:chrome": "cross-env NODE_ENV=production TARGET_BROWSER=chrome node scripts/webextension/build.js && echo 'Chrome built'",
"publish:chrome": "cross-env NODE_ENV=production TARGET_BROWSER=chrome node scripts/webextension/publish.js",
"start:firefox": "cross-env NODE_ENV=development cross-env TARGET_BROWSER=firefox node scripts/webextension/dev-server.js",
"build:firefox": "cross-env NODE_ENV=production TARGET_BROWSER=firefox node scripts/webextension/build.js",
"publish:firefox": "cross-env NODE_ENV=production TARGET_BROWSER=firefox node scripts/webextension/publish.js",
"test": "npm run test:unit ; npm run test:e2e",
"test:unit": "cross-env NODE_ENV=test mocha --require 'babel-core/register' 'src/**/*-test.js'",
"test:e2e": "npm run test:e2e:chrome",
"test:e2e:chrome": "cross-env NODE_ENV=test TARGET_BROWSER=chrome node scripts/webextension/build.js && npm run test:e2e:chrome:now",
"test:e2e:chrome:now": "cross-env NODE_ENV=test cross-env TARGET_BROWSER=chrome mocha test/e2e",
"test:e2e:firefox": "cross-env NODE_ENV=test TARGET_BROWSER=firefox node scripts/webextension/build.js && npm run test:e2e:firefox:now",
"test:e2e:firefox:now": "cross-env NODE_ENV=test cross-env TARGET_BROWSER=firefox mocha test/e2e",
"lint": "eslint '**/*.js' '**/*.jsx'",
"lint-fix": "eslint --fix '**/*.js' '**/*.jsx'",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"aphrodite": "^1.2.4",
"archiver": "^2.0.3",
"babel": "^6.23.0",
"babel-core": "^6.25.0",
"babel-eslint": "^8.1.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"chai": "^4.1.2",
"chromedriver": "^96.0.0",
"cross-env": "^7.0.3",
"css-loader": "^0.28.7",
"del": "^3.0.0",
"eslint": "^7.11.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.12.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.21.4",
"file-loader": "^0.11.2",
"hack-font": "^2.0.20",
"html-webpack-plugin": "^2.30.1",
"husky": "^0.14.3",
"jsdom": "^11.0.0",
"jsonwebtoken": "^8.0.1",
"lerna": "^2.4.0",
"lint-staged": "^4.3.0",
"mocha": "^4.0.1",
"npm-run-all": "^4.1.5",
"prettier": "2.1.2",
"prompt": "^1.0.0",
"prop-types": "^15.5.10",
"react": "^16.0.0",
"react-addons-test-utils": "^15.6.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0",
"react-tiny-virtual-list": "^2.1.2",
"react-virtualized": "^9.10.1",
"request": "^2.82.0",
"selenium-webdriver": "^3.6.0",
"shallowequal": "^1.0.2",
"sinon": "^3.3.0",
"style-loader": "^0.19.0",
"ts-loader": "^2.3.7",
"ttab": "^0.7.2",
"typescript": "^2.5.2",
"unexpected": "^10.29.0",
"unexpected-react": "^4.1.0",
"unexpected-sinon": "^10.7.1",
"url-loader": "^0.5.9",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.8.2",
"write-file-webpack-plugin": "^4.1.0"
},
"dependencies": {
"date-fns": "^2.25.0",
"geckodriver": "^1.10.0",
"json-stringify-safe": "^5.0.1",
"jsondiffpatch": "^0.4.1",
"lodash": "^4.17.21"
}
}