-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
125 lines (125 loc) · 5.22 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"bin": {
"topcoder-lib-setup": "./bin/topcoder-lib-setup"
},
"bugs": {
"url": "https://github.com/topcoder-platform/topcoder-react-utils/issues"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"body-parser": "^1.18.3",
"command-line-args": "^5.0.2",
"command-line-usage": "^5.0.5",
"compression": "^1.7.2",
"config": "^1.30.0",
"cookie-parser": "^1.4.3",
"express": "^4.16.3",
"helmet": "^3.12.1",
"lodash": "^4.17.10",
"moment": "^2.22.2",
"morgan": "^1.9.0",
"node-forge": "^0.7.5",
"prop-types": "^15.6.2",
"raf": "^3.4.0",
"react": "^16.4.1",
"react-css-super-themr": "^2.2.0",
"react-dom": "^16.4.1",
"react-helmet": "^5.2.0",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"redux": "^3.7.2",
"redux-actions": "^2.4.0",
"redux-devtools": "^3.4.1",
"redux-devtools-dock-monitor": "^1.1.3",
"redux-devtools-log-monitor": "^1.4.0",
"redux-promise": "^0.6.0",
"request-ip": "^2.0.2",
"serialize-javascript": "^1.5.0",
"serve-favicon": "^2.5.0",
"shortid": "^2.2.8",
"url-parse": "^1.4.1"
},
"description": "Topcoder collection of generic ReactJS components and utils",
"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-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",
"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"
},
"engines": {
"node": "~8.11.2",
"npm": "~5.6.0"
},
"homepage": "https://github.com/topcoder-platform/topcoder-react-utils#readme",
"keywords": [
"Topcoder",
"React"
],
"license": "MIT",
"main": "index.js",
"name": "topcoder-react-utils",
"repository": {
"type": "git",
"url": "git+https://github.com/topcoder-platform/topcoder-react-utils.git"
},
"scripts": {
"build": "npm run clean && npm run build:dev && npm run build:prod",
"build:dev": "npm run mkDistDir:dev && ./node_modules/.bin/webpack --env=development --bail --colors --display-optimization-bailout --profile --progress && BABEL_ENV=development babel src/server --out-dir dist/dev/server && BABEL_ENV=development babel src/shared/utils/jest.jsx --out-file dist/dev/shared/utils/jest.js && BABEL_ENV=development babel src/client/init.js --out-file dist/dev/client/init.js",
"build:dev:watch": "npm run clean && npm run mkDistDir:dev && (./node_modules/.bin/webpack --env=development --bail --colors --display-optimization-bailout --profile --progress --watch | BABEL_ENV=development babel src/server --out-dir dist/dev/server --watch | BABEL_ENV=development babel src/shared/utils/jest.jsx --out-file dist/dev/shared/utils/jest.js --watch | BABEL_ENV=development babel src/client/init.js --out-file dist/dev/client/init.js --watch)",
"build:prod": "npm run mkDistDir:prod && ./node_modules/.bin/webpack --env=production --colors --display-optimization-bailout --profile --progress && BABEL_ENV=production babel src/server --out-dir dist/prod/server && BABEL_ENV=production babel src/shared/utils/jest.jsx --out-file dist/prod/shared/utils/jest.js && BABEL_ENV=production babel src/client/init.js --out-file dist/prod/client/init.js",
"clean": "./node_modules/.bin/rimraf dist",
"jest": "NODE_CONFIG_ENV=test jest --no-cache --maxWorkers=4 --config config/jest/default.js",
"lint": "npm run lint:js && npm run lint:scss",
"lint:js": "eslint --ext .js,.jsx .",
"lint:scss": "./node_modules/.bin/stylelint **/*.scss --syntax scss",
"mkDistDir:dev": "mkdir -p dist/dev/shared/utils && mkdir -p dist/dev/client",
"mkDistDir:prod": "mkdir -p dist/prod/shared/utils && mkdir -p dist/prod/client",
"test": "npm run lint && npm run jest"
},
"version": "0.7.8"
}