forked from git-temporal/git-temporal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 4.18 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
{
"name": "root",
"private": true,
"repository": "https://github.com/git-temporal/git-temporal",
"keywords": [
"git",
"git-time-machine",
"react",
"history"
],
"author": "Bee Wilkerson",
"license": "MIT",
"bugs": {
"url": "https://github.com/git-temporal/git-temporal/issues"
},
"homepage": "https://github.com/git-temporal/git-temporal",
"scripts": {
"bootstrap": "npx lerna bootstrap",
"build": "npm run build:logger && npm run build:commons && npm run build:diff-scraper && npm run build:log-scraper && npm run build:api-node-express && npm run build:git-temporal-react && npm run build:git-temporal-vscode",
"build:commons": "cd packages/commons && npm run build",
"build:logger": "cd packages/logger && npm run build",
"build:diff-scraper": "cd packages/git-diff-scraper && npm run build",
"build:log-scraper": "cd packages/git-log-scraper && npm run build",
"build:api-node-express": "cd packages/api-node-express && npm run build",
"build:git-temporal-react": "cd packages/git-temporal-react && npm run build",
"build:git-temporal-vscode": "cd packages/git-temporal-vscode && npm run build",
"changelog": "cross-env node scripts/updateChangelog.js",
"publish": "npm run publish:logger && npm run publish:commons && npm run publish:git-diff-scraper && npm run publish:git-log-scraper && npm run publish:git-temporal-react",
"publish:commons": "cd packages/commons && npm publish",
"publish:logger": "cd packages/logger && npm publish",
"publish:git-diff-scraper": "cd packages/git-diff-scraper && npm publish",
"publish:git-log-scraper": "cd packages/git-log-scraper && npm publish",
"publish:git-temporal-react": "cd packages/git-temporal-react && npm publish",
"publish:vscode": "cd packages/git-temporal-vscode && npm install && vsce publish",
"version": "npx lerna version"
},
"devDependencies": {
"@babel/cli": "7.7.7",
"@babel/core": "7.1.0",
"@babel/plugin-proposal-class-properties": "7.1.0",
"@babel/plugin-proposal-do-expressions": "7.0.0",
"@babel/plugin-proposal-export-default-from": "7.0.0",
"@babel/plugin-proposal-export-namespace-from": "7.0.0",
"@babel/plugin-proposal-function-bind": "7.0.0",
"@babel/plugin-proposal-function-sent": "7.1.0",
"@babel/plugin-proposal-json-strings": "7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.0.0",
"@babel/plugin-proposal-object-rest-spread": "7.0.0",
"@babel/plugin-proposal-optional-chaining": "7.7.5",
"@babel/plugin-proposal-pipeline-operator": "7.0.0",
"@babel/plugin-syntax-dynamic-import": "7.0.0",
"@babel/plugin-transform-modules-commonjs": "7.1.0",
"@babel/preset-env": "7.1.0",
"@babel/preset-stage-0": "7.0.0",
"@babel/preset-typescript": "7.1.0",
"@babel/register": "7.0.0",
"@types/enzyme": "3.1.14",
"@types/express": "4.16.0",
"@types/jest": "23.3.2",
"@types/node": "10.11.3",
"@types/react": "16.9.17",
"@types/react-dom": "16.9.4",
"@types/react-redux": "7.1.6",
"@types/react-router": "4.0.31",
"@types/redux-thunk": "2.1.0",
"babel-core": "6.26.3",
"babel-eslint": "9.0.0",
"babel-jest": "24.8.0",
"babel-plugin-module-resolver": "3.1.1",
"babel-plugin-transform-modules": "0.1.1",
"bumble-util": "0.4.1",
"chai": "4.1.2",
"copy-webpack-plugin": "5.1.1",
"cross-env": "5.2.1",
"doctoc": "1.3.1",
"eslint": "5.6.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "3.1.0",
"eslint-import-resolver-babel-module": "4.0.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "6.1.1",
"eslint-plugin-react": "7.11.1",
"husky": "1.0.0-rc.15",
"lerna": "3.13.4",
"lerna-changelog": "1.0.0",
"lerna-update-wizard": "0.17.6",
"lint-staged": "9.5.0",
"mocha": "5.2.0",
"prettier": "1.14.3",
"regenerator-runtime": "0.12.1",
"ts-node": "7.0.1",
"tsconfig-paths": "3.6.0",
"tslint": "5.11.0",
"tslint-config-airbnb": "5.11.0",
"tslint-config-prettier": "1.15.0",
"tslint-react": "3.6.0",
"typescript": "3.0.3",
"underscore": "1.9.1"
}
}