-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
111 lines (111 loc) · 4.18 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
{
"name": "topcoder-react-starter",
"version": "0.0.6",
"description": "ReactJS Starting Pack by Topcoder",
"main": "index.js",
"scripts": {
"build": "npm run clean && ./node_modules/.bin/webpack --env=production --progress --profile --colors --display-optimization-bailout",
"build:dev": "npm run clean && ./node_modules/.bin/webpack --env=development --progress --profile --colors --display-optimization-bailout",
"clean": "./node_modules/.bin/rimraf build",
"dev": "cross-env BABEL_ENV=development NODE_ENV=development node ./bin/www",
"fix:js": "./node_modules/.bin/eslint --fix --ext .js,.jsx .",
"fix:styles": "./node_modules/.bin/stylelint **/*.scss --syntax scss --fix",
"jest": "cross-env NODE_CONFIG_ENV=test ./node_modules/.bin/jest --no-cache --maxWorkers=4 --config config/jest/default.js",
"lint": "npm run lint:js && npm run lint:scss",
"lint:js": "./node_modules/.bin/eslint --ext .js,.jsx .",
"lint:scss": "./node_modules/.bin/stylelint **/*.scss --syntax scss",
"start": "cross-env BABEL_ENV=production NODE_ENV=production node ./bin/www",
"test": "npm run lint && npm run jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/topcoder-platform/topcoder-react-utils.git"
},
"keywords": [
"JavaScript",
"JS",
"Topcoder",
"React",
"ReactJS",
"Starting Pack"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/topcoder-platform/topcoder-react-starter/issues"
},
"homepage": "https://github.com/topcoder-platform/topcoder-react-starter#readme",
"dependencies": {
"@babel/register": "^7.0.0",
"cross-env": "^5.2.0",
"lodash": "^4.17.11",
"raf": "^3.4.1",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-router-dom": "^4.3.1",
"serialize-javascript": "^1.6.0",
"topcoder-react-utils": "^0.9.1"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-decorators": "^7.2.3",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-proposal-function-sent": "^7.2.0",
"@babel/plugin-proposal-json-strings": "^7.2.0",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.4.3",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"babel-plugin-css-modules-transform": "^1.6.2",
"babel-plugin-dynamic-import-node": "^2.2.0",
"babel-plugin-inline-react-svg": "^1.0.1",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-react-css-modules": "^5.0.0",
"babel-plugin-transform-assets": "^1.0.2",
"css-loader": "^2.0.1",
"eslint": "^5.11.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-import-resolver-babel-module": "^5.0.0-beta.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.1.2",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"file-loader": "^3.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.6.0",
"jsdoc-to-markdown": "^4.0.1",
"mini-css-extract-plugin": "^0.5.0",
"mkpath": "^1.0.0",
"mockdate": "^2.0.2",
"node-sass": "^4.11.0",
"nodelist-foreach-polyfill": "^1.2.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^3.0.0",
"postcss-scss": "^2.0.0",
"react-hot-loader": "^4.6.3",
"react-test-renderer": "^16.7.0",
"resolve-url-loader": "^3.0.0",
"rimraf": "^2.6.2",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"stylelint": "^9.9.0",
"stylelint-config-standard": "^18.2.0",
"webpack": "^4.28.2",
"webpack-cli": "^3.1.2",
"webpack-dev-middleware": "^3.4.0",
"webpack-hot-middleware": "^2.24.3",
"webpack-merge": "^4.1.5",
"webpack-stats-plugin": "^0.2.1",
"workbox-webpack-plugin": "^3.6.3"
}
}