-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.89 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
{
"name": "angular-react-migrate",
"version": "0.0.1",
"description": "",
"private": true,
"scripts": {
"start": "webpack-dev-server --config ./config/dev.webpack.config.js --progress --colors --hot --inline --port 5100 --history-api-fallback --host 0.0.0.0 --open",
"prebuild": "yarn clear && mkdir dist",
"build": "webpack --progress --colors --config ./config/prod.webpack.config.js",
"build-snapshot": "yarn build && mv dist/app.js dist/app@$(git rev-parse HEAD).js && mv dist/app.css dist/app@$(git rev-parse HEAD).css && replace 'app' \"app@$(git rev-parse HEAD)\" -- dist/index.html",
"build-release": "yarn build && mv dist/app.js dist/app@$npm_package_version.js && mv dist/app.css dist/app@$npm_package_version.css && replace 'app' \"app@$npm_package_version\" -- dist/index.html",
"clear": "rm -rf dist/",
"eslint": "eslint ./src -c ./config/.eslintrc.json",
"unit-test": "karma start ./config/test/karma.conf.js --single-run --browsers PhantomJS",
"test": "yarn eslint && yarn unit-test",
"unit-test-debug": "sambac --webpackConfig ./config/test/tests.individual.webpack.js --port 5102 --webpackPort 5103"
},
"repository": {
"type": "git",
"url": "ssh://git@stash.grubhub.com:7999/spike/react-skeleton.git"
},
"dependencies": {
"angular": "~1.5.0",
"angular-route": "~1.5.0",
"babel-polyfill": "^6.23.0",
"classnames": "^2.2.5",
"lodash": "^4.17.4",
"ngreact": "^0.4.0",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-redux": "^5.0.3",
"react-router": "^3.0.0",
"redux": "^3.6.0",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"autoprefixer": "^6.7.7",
"babel-core": "^6.24.0",
"babel-loader": "^6.4.0",
"babel-plugin-istanbul": "^4.0.0",
"babel-preset-latest": "^6.24.0",
"babel-preset-react": "^6.23.0",
"css-loader": "^0.27.2",
"enzyme": "^2.7.1",
"eslint": "^3.17.1",
"eslint-plugin-react": "^6.10.0",
"extract-loader": "^0.1.0",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.10.1",
"html-loader": "^0.4.5",
"jasmine": "^2.5.2",
"jasmine-core": "^2.5.2",
"jasmine-expect-jsx": "^1.1.2",
"jasmine-reporters": "^2.1.1",
"karma": "^1.5.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.1.0",
"karma-jasmine-expect-jsx": "^1.0.1",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.2",
"morgan": "^1.8.1",
"node-sass": "^4.5.0",
"node-sass-globbing": "^0.0.23",
"phantomjs-prebuilt": "^2.1.13",
"postcss": "^5.2.16",
"postcss-loader": "^1.3.3",
"react-addons-test-utils": "^15.0.1",
"sambac-webpack": "^0.6.0",
"sass-loader": "^6.0.3",
"style-loader": "^0.13.2",
"url-loader": "^0.5.8",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1",
"yargs": "^7.0.2"
}
}