-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
109 lines (109 loc) · 3.88 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
{
"bugs": {
"url": "https://github.com/topcoder-platform/topcoder-react-lib/issues"
},
"description": "The implementation of TC lib for ReactJS projects",
"engines": {
"node": "~8.11.2",
"npm": "~5.6.0"
},
"homepage": "https://github.com/topcoder-platform/topcoder-react-lib#readme",
"keywords": [
"Topcoder",
"React",
"Lib"
],
"license": "UNLICENSED",
"main": "index.js",
"name": "topcoder-react-lib",
"repository": {
"type": "git",
"url": "git+https://github.com/topcoder-platform/topcoder-react-lib.git"
},
"scripts": {
"build": "npm run clean && npm run build:dev && npm run build:prod",
"build:dev": "NODE_ENV=development ./node_modules/.bin/webpack --env=development --progress --profile --colors --display-optimization-bailout",
"build:dev:watch": "npm run clean && ./node_modules/.bin/webpack --env=development --progress --profile --colors --watch --display-optimization-bailout",
"build:prod": "NODE_ENV=production ./node_modules/.bin/webpack --env=production --progress --profile --colors --display-optimization-bailout",
"clean": "rimraf dist",
"jest": "jest --no-cache --maxWorkers=4 --config config/jest/default.js",
"lint": "npm run lint:js",
"lint:js": "./node_modules/.bin/eslint --ext .js,.jsx .",
"test": "npm run lint && npm run jest"
},
"version": "1.2.16",
"dependencies": {
"auth0-js": "^6.8.4",
"config": "^3.2.0",
"isomorphic-fetch": "^2.2.1",
"le_node": "^1.7.0",
"lodash": "^4.17.10",
"moment": "^2.22.2",
"moment-duration-format": "^2.2.2",
"moment-timezone": "^0.5.21",
"qs": "^6.5.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-redux": "^6.0.1",
"redux": "^3.7.2",
"redux-actions": "^2.4.0",
"tc-core-library-js": "appirio-tech/tc-core-library-js.git#v2.6",
"to-capital-case": "^1.0.0",
"topcoder-react-utils": "0.7.5",
"@topcoder-platform/tc-auth-lib": "git+https://github.com/topcoder-platform/tc-auth-lib.git#1.0.4"
},
"devDependencies": {
"autoprefixer": "^8.6.4",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.5",
"babel-loader": "^7.1.4",
"babel-plugin-css-modules-transform": "^1.6.1",
"babel-plugin-dynamic-import-node": "^2.0.0",
"babel-plugin-inline-react-svg": "^0.5.3",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-react-css-modules": "^3.4.2",
"babel-plugin-transform-assets": "^1.0.1",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"command-line-args": "^5.0.2",
"command-line-usage": "^5.0.5",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-import-resolver-babel-module": "^4.0.0-beta.3",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jest": "^21.17.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.10.0",
"file-loader": "^1.1.11",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.2.0",
"jsdoc-to-markdown": "^4.0.1",
"mini-css-extract-plugin": "^0.4.1",
"mkpath": "^1.0.0",
"mockdate": "^2.0.2",
"node-sass": "^4.9.0",
"nodelist-foreach-polyfill": "^1.2.0",
"optimize-css-assets-webpack-plugin": "^4.0.3",
"postcss-loader": "^2.1.5",
"postcss-scss": "^1.0.6",
"react-hot-loader": "^4.3.3",
"react-test-renderer": "^16.4.1",
"resolve-url-loader": "^2.3.0",
"rimraf": "^2.6.2",
"sass-loader": "^7.0.3",
"style-loader": "^0.21.0",
"stylelint": "^9.3.0",
"stylelint-config-standard": "^18.2.0",
"webpack": "^4.14.0",
"webpack-cli": "^3.0.8",
"webpack-dev-middleware": "^3.1.3",
"webpack-hot-middleware": "^2.22.2",
"webpack-merge": "^4.1.3",
"webpack-stats-plugin": "^0.2.1"
}
}