forked from topcoder-platform/community-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
130 lines (130 loc) · 4.48 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
126
127
128
129
130
{
"name": "community-app",
"version": "1.0.0",
"description": "Topcoder community website",
"main": "index.js",
"scripts": {
"build": "./node_modules/.bin/webpack --env=production --progress --profile --colors --display-optimization-bailout",
"build:dev": "./node_modules/.bin/webpack --env=development --progress --profile --colors --display-optimization-bailout",
"dev": "cross-env BABEL_ENV=development DEV_TOOLS=true node ./bin/www",
"fix:js": "eslint --fix --ext .js,.jsx .",
"fix:styles": "stylelint **/*.scss --syntax scss --fix",
"jest": "cross-env BABEL_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": "stylelint **/*.scss --syntax scss",
"start": "cross-env BABEL_ENV=production node ./bin/www",
"test": "npm run lint && npm run jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/topcoder-platform/community-app.git"
},
"author": "",
"license": "UNLICENSED",
"private": true,
"bugs": {
"url": "https://github.com/topcoder-platform/community-app/issues"
},
"homepage": "https://github.com/topcoder-platform/community-app#readme",
"engines": {
"node": "^8.2.1"
},
"dependencies": {
"atob": "^2.0.3",
"autoprefixer": "^7.1.4",
"babel-plugin-css-modules-transform": "^1.2.7",
"babel-plugin-inline-react-svg": "^0.4.0",
"babel-plugin-module-alias": "^1.6.0",
"babel-plugin-react-css-modules": "^3.3.0",
"babel-plugin-transform-assets": "^0.2.0",
"babel-preset-env": "^1.2.1",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-2": "^6.22.0",
"babel-register": "^6.26.0",
"babel-runtime": "^6.26.0",
"body-parser": "^1.18.2",
"browser-cookies": "^1.1.0",
"config": "^1.25.1",
"cookie-parser": "^1.4.3",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.7",
"express": "^4.16.0",
"file-loader": "^0.11.2",
"identity-obj-proxy": "^3.0.0",
"isomorphic-fetch": "^2.2.1",
"le_node": "^1.7.0",
"lodash": "^4.17.4",
"mockdate": "^2.0.1",
"moment": "^2.18.1",
"moment-duration-format": "^1.3.0",
"moment-timezone": "^0.5.13",
"money": "^0.2.0",
"morgan": "^1.9.0",
"node-sass": "^4.5.0",
"postcss-loader": "^2.0.5",
"postcss-scss": "^1.0.0",
"prop-types": "^15.6.0",
"qs": "^6.5.1",
"rc-tooltip": "^3.4.9",
"react": "^15.6.1",
"react-addons-shallow-compare": "^15.6.0",
"react-css-super-themr": "^2.2.0",
"react-dates": "^12.6.0",
"react-dom": "^15.6.1",
"react-dropdown": "^1.3.0",
"react-hot-loader": "^3.0.0-beta.6",
"react-player": "^0.24.1",
"react-redux": "^5.0.3",
"react-router-dom": "^4.2.2",
"react-select": "^1.0.0-rc.3",
"react-slick": "^0.15.4",
"react-stickynode": "^1.3.1",
"react-test-renderer": "^15.4.2",
"react-waypoint": "^7.1.0",
"redux": "^3.6.0",
"redux-actions": "^2.0.1",
"redux-promise": "^0.5.3",
"request-ip": "^2.0.1",
"resolve-url-loader": "^2.0.2",
"sass-loader": "^6.0.3",
"serialize-javascript": "^1.3.0",
"serve-favicon": "^2.4.5",
"shortid": "^2.2.8",
"style-loader": "^0.18.2",
"stylelint-config-standard": "^17.0.0",
"supertest": "^3.0.0",
"tc-accounts": "https://github.com/appirio-tech/accounts-app.git#dev",
"url-parse": "^1.1.9",
"uuid": "^3.0.1",
"webpack-merge": "^4.0.0",
"xml2json": "^0.11.0"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.2",
"babel-plugin-dynamic-import-node": "^1.1.0",
"babel-plugin-module-resolver": "^3.0.0-beta.5",
"babel-plugin-transform-runtime": "^6.23.0",
"cross-env": "^5.0.5",
"enzyme": "^2.9.1",
"eslint": "^4.6.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-import-resolver-babel-module": "^4.0.0-beta.3",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^21.0.2",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.3.0",
"extract-css-chunks-webpack-plugin": "birdofpreyru/extract-css-chunks-webpack-plugin#develop",
"jest": "^21.0.2",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"redux-devtools": "^3.3.2",
"redux-devtools-dock-monitor": "^1.1.1",
"redux-devtools-log-monitor": "^1.2.0",
"redux-mock-store": "^1.3.0",
"stylelint": "^8.1.1",
"webpack": "^3.6.0",
"webpack-dev-middleware": "^1.10.1",
"webpack-hot-middleware": "^2.19.1"
}
}