-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
85 lines (85 loc) · 3.29 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
{
"name": "controlcenter",
"version": "0.0.0",
"dependencies": {
"classname": "0.0.0",
"es5-shim": "^4.1.0",
"es6-promise": "^2.0.1",
"platform": "^1.3.0",
"react": "^0.13.1",
"react-router": "^0.13.2",
"reflux": "^0.2.7",
"tcomb-form": "^0.4.8",
"whatwg-fetch": "^0.7.0"
},
"devDependencies": {
"autoprefixer-loader": "1.1.0",
"babel-core": "^5.1.9",
"babel-loader": "^5.0.0",
"chai": "^3.0.0",
"cjsx-loader": "^2.0.1",
"coffee-lint-loader": "0.0.1",
"coffee-loader": "^0.7.2",
"coffeelint": "^1.10.1",
"css-loader": "^0.9.1",
"csso": "^1.3.11",
"eslint": "^0.15.1",
"eslint-plugin-react": "^1.6.1",
"extract-text-webpack-plugin": "^0.3.8",
"file-loader": "^0.8.1",
"husky": "^0.6.2",
"istanbul": "^0.3.5",
"istanbul-instrumenter-loader": "^0.1.2",
"jade-loader": "^0.7.0",
"jasmine-core": "^2.1.3",
"jasmine-reporters": "~0.2.1",
"jasmine-sinon": "^0.4.0",
"jsx-loader": "^0.12.2",
"jsxcs": "^0.2.1",
"karma": "^0.12.28",
"karma-chai-sinon": "^0.1.5",
"karma-chrome-launcher": "^0.1.7",
"karma-coverage": "^0.2.7",
"karma-firefox-launcher": "^0.1.4",
"karma-mocha": "^0.1.10",
"karma-phantomjs-launcher": "^0.1.4",
"karma-webpack": "^1.3.1",
"loader-utils": "^0.2.6",
"lodash": "^3.5.0",
"mocha": "^2.2.5",
"node-sass": "^2.0.1",
"raw-loader": "^0.5.1",
"react-hot-loader": "^1.1.7",
"sass-graph": "^1.0.3",
"sass-loader": "^0.4.0",
"sinon-chai": "^2.8.0",
"source-map": "^0.4.0",
"style-loader": "^0.8.3",
"url-loader": "^0.5.5",
"webpack": "^1.4.15",
"webpack-dev-server": "^1.7.0"
},
"engines": {
"node": ">=0.8.0"
},
"scripts": {
"clean": "rm -rf ./public/app/dist && rm -rf ./public/dist ",
"bundle": "webpack -p --config ./public/webpack.config.js ",
"bundle-dev": "webpack -d -w --config ./public/webpack.config.js",
"start": "node public/hot-reload-server.js",
"js-files": "find ./public \\( -name '*.js' -o -name '*.jsx' \\) ! -path './node_modules/*' ! -path './public/bower_components/*' ! -path './coverage/*' ! -path './public/dist/*' ! -path '*.spec.js*' ! -path './public/app/project-setup/test/*'",
"test-files": "find ./public -name '*.spec.js*' ! -path './node_modules/*' ! -path './public/bower_components/*' ! -path './coverage/*' ! -path './public/dist/*'",
"test": "node ./node_modules/karma/bin/karma start ./public/app/project-setup/test/karma.conf.js --single-run",
"tdd": "node ./node_modules/karma/bin/karma start ./public/app/project-setup/test/karma.conf.js",
"build": "npm run clean && npm run bundle && cp -r ./public/app/* ./public/dist",
"eslint-codebase": "node_modules/.bin/eslint `npm run -s js-files` -c ./.eslintrc-codebase",
"eslint-tests": "node_modules/.bin/eslint `npm run -s test-files` -c ./.eslintrc-tests",
"jscs-codebase": "node_modules/.bin/jsxcs `npm run -s js-files` --config ./jscs.json --esnext",
"jscs-tests": "node_modules/.bin/jsxcs `npm run -s test-files` --config ./jscs.json --esnext",
"eslint": "npm run eslint-codebase && npm run eslint-tests",
"jscs": "npm run jscs-codebase",
"lint": "npm run eslint && npm run jscs",
"fonts": "fontcustom compile",
"precommit": "npm run lint && npm test"
}
}