forked from department-of-veterans-affairs/vets-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 3.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
{
"dependencies": {
"babel-core": "^6.5.1",
"babel-loader": "^6.2.2",
"babel-plugin-transform-runtime": "^6.5.0",
"babel-polyfill": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"babel-runtime": "^6.6.1",
"classlist-polyfill": "^1.0.2",
"coffee-loader": "^0.7.2",
"coffee-script": "^1.10.0",
"dataset": "^0.3.1",
"exports-loader": "^0.6.2",
"foundation": "^4.2.1-1",
"imports-loader": "^0.6.5",
"jquery": "^2.2.0",
"lodash": "^4.5.0",
"lodash-deep": "^1.6.0",
"modernizr": "^3.3.1",
"modernizr-loader": "^0.0.4",
"polyfill-function-prototype-bind": "0.0.1",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-redux": "^4.4.1",
"react-router": "^2.0.0",
"redux": "^3.3.1",
"sizzle": "^2.3.0",
"webpack": "^1.12.13",
"wow.js": "^1.1.2"
},
"//": "Keep test dependencies in devDependencies so Heroku does not waste time installing.",
"devDependencies": {
"babel-eslint": "^5.0.0",
"babel-plugin-react-transform": "^2.0.1",
"babel-preset-react": "^6.5.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.2.0",
"chai-jquery": "^2.0.0",
"eslint": "^2.2.0",
"eslint-config-airbnb": "^6.0.2",
"eslint-plugin-promise": "^1.0.8",
"eslint-plugin-react": "^4.1.0",
"eslint-plugin-standard": "^1.3.2",
"install": "^0.4.4",
"karma": ">= 0.13.0",
"karma-chai": "^0.1.0",
"karma-chai-as-promised": "^0.1.2",
"karma-chai-jquery": "^1.0.0",
"karma-chrome-launcher": "^0.2.2",
"karma-fixture": "^0.2.6",
"karma-html2js-preprocessor": "^0.1.0",
"karma-jquery": "^0.1.0",
"karma-json-fixtures-preprocessor": "0.0.6",
"karma-mocha": "^0.2.1",
"karma-mocha-reporter": "^1.2.3",
"karma-phantomjs-launcher": "^0.2.2",
"karma-sinon-chai": "^1.2.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"lolex": "^1.4.0",
"mocha": "^2.4.5",
"nodemon": "^1.9.1",
"npm": "^3.7.2",
"phantomjs": "^1.9.19",
"phantomjs-polyfill": "0.0.1",
"react-addons-test-utils": "^0.14.7",
"react-transform": "0.0.3",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.2",
"redbox-react": "^1.2.2",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"skin-deep": "^0.14.0",
"webpack-dev-server": "^1.14.1"
},
"optionalDependencies": {
"fsevents": "^1.0.7"
},
"scripts": {
"karma": "karma",
"lint": "eslint --ext .js --ext .jsx --ignore-pattern *.min.js _health-care/_js _webpack assets/js/entry.js spec",
"start": "webpack-dev-server --config webpack_dev.config.js --hot --inline --content-base _webpack/public",
"test": "npm run test-js && npm run lint",
"test-js": "karma start --single-run",
"watch": "BABEL_ENV=hot npm start & npm run watch-js & npm run watch-lint",
"watch-js": "karma start",
"watch-lint": "nodemon --watch _health-care/_js --watch _webpack --watch assets/js/entry.js --ignore _webpack/public/assets/js/generated --watch spec --ext js,jsx --exec 'npm run lint'",
"webpack": "webpack -p",
"webpack-noopt": "webpack",
"webpack-prod": "webpack -p --config webpack_prod.config.js",
"webpack-prod-noopt": "webpack --config webpack_prod.config.js"
},
"private": true
}