This repository was archived by the owner on Mar 28, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.71 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.71 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
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
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "oscars-frontend",
"version": "1.0.21",
"description": "OSCARS frontend",
"repository": {
"type": "git",
"url": "git://github.com/esnet/oscars-newtech.git"
},
"dependencies": {
"bootstrap": "4.1.3",
"chrono-node": "^1.3.4",
"classnames": "^2.2.5",
"deep-equal": "~1.0.1",
"deep-freeze": "^0.0.1",
"extend": "^3.0.1",
"faker": "^4.1.0",
"graphlib": "^2.1.5",
"immutability-helper": "^2.2.3",
"jquery": "^3.2.1",
"json-set-map": "^1.0.2",
"jstz": "^1.0.11",
"lodash": "4.17.11",
"lodash-es": "4.17.11",
"mobx": "5.0.0",
"mobx-react": "5.2.1",
"moment": "2.21.0",
"prop-types": "^15.5.10",
"react": "16.4.2",
"react-addons-shallow-compare": "^15.6.0",
"react-bootstrap-table-next": "^0.1.12",
"react-bootstrap-table2-filter": "^0.2.0",
"react-bootstrap-table2-paginator": "^0.1.4",
"react-bootstrap-typeahead": "^2.5.1",
"react-bs-notifier": "^5.0.0",
"react-dates": "^12.2.4",
"react-dom": "16.4.2",
"react-dropdown": "^1.2.0",
"react-idle-timer": "^2.0.0",
"react-lazylog": "^3.1.4",
"react-nestable": "^1.1.0",
"react-octicon": "^3.0.1",
"react-router-bootstrap": "^0.24.4",
"react-router-dom": "^4.1.1",
"react-select-plus": "^1.2.0",
"react-toggle-display": "^2.2.0",
"react-transition-group": "^2.2.1",
"reactstrap": "6.4.0",
"rest": "^2.0.0",
"sshpk": "^1.14.1",
"vis": "^4.21.0"
},
"license": "MIT",
"scripts": {
"watch": "webpack --watch -d",
"start": "./node_modules/.bin/webpack-dev-server --hot --config webpack-dev.config.js",
"cold": "./node_modules/.bin/webpack-dev-server --no-inline --config webpack-dev.config.js",
"build": "./node_modules/.bin/webpack -p",
"lint": "eslint ./src --fix",
"prettier": "prettier --print-width 100 --tab-width 4 --write \"src/**/*.js\"",
"format": "npm run prettier && npm run lint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --print-width 100 --tab-width 4 --write",
"git add"
]
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^9.0.0",
"babel-jest": "^20.0.3",
"babel-loader": "^7.1.4",
"babel-plugin-lodash": "^3.3.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es3-member-expression-literals": "^6.22.0",
"babel-plugin-transform-es3-property-literals": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"chalk": "^2.4.1",
"css-loader": "^0.28.11",
"eslint": "^5.9.0",
"eslint-config-esnet": "^0.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-config-react-app": "^3.0.5",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-flowtype": "^2.50.3",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"expect": "^1.20.2",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.2.0",
"less": "^3.0.4",
"less-loader": "^4.1.0",
"lint-staged": "^8.1.0",
"lodash-webpack-plugin": "^0.11.5",
"mocha": "^5.2.0",
"prettier": "1.15.3",
"style-loader": "^0.18.2",
"uglifyjs-webpack-plugin": "^1.2.5",
"url-loader": "^1.0.1",
"webpack": "^4.8.3",
"webpack-bundle-analyzer": "^2.13.0",
"webpack-cli": "^2.1.3",
"webpack-closure-compiler": "^2.1.6",
"webpack-dev-server": "^3.1.4",
"webpack-serve": "^1.0.2"
},
"eslintConfig": {
"extends": "react-app"
}
}