This repository has been archived by the owner on Sep 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
103 lines (103 loc) · 3.2 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
{
"name": "troposphere",
"description": "Atmosphere Web Client",
"version": "33.0.0",
"author": "CyVerse, formerly iPlant Collaborative",
"license": "BSD-3-Clause",
"homepage": "https://github.com/cyverse/troposphere",
"repository": {
"type": "git",
"url": "git://github.com/cyverse/troposphere.git"
},
"bugs": {
"url": "https://github.com/cyverse/troposphere/issues"
},
"config": {
"unsafe-perm": true
},
"scripts": {
"clean": "rimraf troposphere/assets/bundles",
"serve": "webpack-dev-server --hot --env development --content-base troposphere/assets",
"build:dev": "npm run clean && webpack --env development",
"build:prod": "npm run clean && webpack --env production -p",
"jenkins": "webpack --profile --colors --",
"test": "echo \"Error: no test specified\" && exit 1",
"stats:dev": "webpack --json --env development > stats.json",
"stats:prod": "webpack --json --env production -p > stats.json",
"lint": "eslint -c .eslintrc --ext .jsx,.js --no-eslintrc troposphere/static/js",
"lint-pre-commit": "eslint --stdin",
"format": "prettier --config .prettierrc --write 'troposphere/static/js/**/*.{js,jsx}'",
"dev": "npm run build:dev",
"build": "npm run build:prod"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"backbone": "^1.2.1",
"bootstrap-sass": "^3.3.6",
"classnames": "^2.2.3",
"crypto-js": "^3.1.5",
"cyverse-ui": "^0.*.*",
"d3": "^3.5.6",
"highcharts-commonjs": "^4.1.7-1",
"history": "^2.1.2",
"jquery": "^3.3.0",
"jstz": "^2.0.0",
"lodash": "^4.17.4",
"material-ui": "^0.17.1",
"moment": "^2.10.6",
"moment-timezone": "^0.5.1",
"prop-types": "^15.5.10",
"q": "^1.4.1",
"raven-js": "^3.13.0",
"react": "15.6.2",
"react-dom": "15.6.2",
"react-router": "^2.8.0",
"react-tap-event-plugin": "^2.0.1",
"react-tooltip": "^3.0.10",
"showdown": "^1.2.1",
"tinycolor2": "^1.4.1",
"toastr": "^2.1.0",
"underscore": "^1.8.3"
},
"devDependencies": {
"autoprefixer": "^6.3.6",
"babel-core": "^6.0.0",
"babel-eslint": "^6.*.*",
"babel-loader": "^6.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.0.0",
"babel-preset-react": "^6.0.0",
"babel-preset-stage-2": "^6.0.0",
"clean-webpack-plugin": "^0.1.3",
"compression-webpack-plugin": "^0.3.1",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.23.0",
"eslint": "^2.13.*",
"eslint-plugin-react": "^4.1.0",
"exports-loader": "^0.6.2",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.8.4",
"imports-loader": "^0.6.4",
"json-loader": "^0.5.4",
"less": "2.5.1",
"less-loader": "2.2.0",
"node-sass": "^4.1.1",
"postcss-loader": "^1.3.3",
"precss": "^1.4.0",
"prettier": "1.10.1",
"progress-bar-webpack-plugin": "^1.9.3",
"react-addons-test-utils": "15.6.2",
"rimraf": "^2.6.1",
"sass-loader": "^4.1.1",
"style-loader": "0.13.0",
"url-loader": "^0.5.7",
"webpack": "^2.2.1",
"webpack-bundle-tracker": "0.0.93",
"webpack-config-utils": "^2.3.0",
"webpack-dev-server": "^2.4.1",
"yuglify": "~0.1.4"
},
"engines": {
"npm": "3.*"
}
}