forked from jasonLaster/debugger.html
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.06 KB
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
{
"name": "debugger.html",
"scripts": {
"start": "firefox-proxy & node bin/server",
"lint": "npm run lint-css; npm run lint-js",
"lint-css": "stylelint public/js/components/*.css",
"lint-js": "eslint public/js",
"test": "mocha --compilers js:babel-register public/js/**/tests/*",
"test-paths": "mocha --compilers js:babel-register",
"test-browser": "./bin/server-browser-test.js",
"test-karma": "./node_modules/.bin/karma start --single-run",
"storybook": "start-storybook -p 9001 -s public"
},
"dependencies": {
"babel-cli": "^6.7.5",
"babel-polyfill": "^6.7.4",
"babel-preset-stage-0": "^6.5.0",
"co": "=4.6.0",
"codemirror": "^5.1.0",
"express": "^4.13.4",
"ff-devtools-libs": "=0.1.6",
"immutable": "^3.7.6",
"json-loader": "^0.5.4",
"karma": "^0.13.22",
"mocha": "^2.4.5",
"net": "^1.0.2",
"react": "=0.14.7",
"react-dom": "=0.14.7",
"react-immutable-proptypes": "^1.7.1",
"react-inlinesvg": "^0.4.2",
"react-redux": "4.4.5",
"redux": "3.5.2",
"stylelint": "^6.2.2",
"webpack": "1.13.0",
"webpack-dev-middleware": "^1.6.1",
"ws": "^1.0.1"
},
"devDependencies": {
"@kadira/storybook": "^1.17.1",
"babel": "^6.5.2",
"babel-core": "^6.7.6",
"babel-loader": "^6.2.4",
"babel-plugin-transform-es2015-block-scoping": "^6.7.1",
"babel-plugin-transform-es2015-destructuring": "^6.6.5",
"babel-plugin-transform-es2015-parameters": "^6.7.0",
"babel-plugin-transform-es2015-spread": "^6.6.5",
"babel-plugin-transform-runtime": "^6.7.5",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.7.2",
"css-loader": "^0.23.1",
"eslint": "^2.7.0",
"eslint-plugin-mozilla": "0.0.3",
"eslint-plugin-react": "^5.0.1",
"expect.js": "^0.3.1",
"extract-text-webpack-plugin": "^1.0.1",
"karma-chrome-launcher": "^0.2.3",
"karma-firefox-launcher": "^0.1.7",
"karma-mocha": "^0.2.2",
"karma-webpack": "^1.7.0",
"mocha-circleci-reporter": "0.0.1",
"rimraf": "^2.5.2",
"style-loader": "^0.13.1"
}
}