-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.08 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.08 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
65
{
"name": "react-gallery",
"version": "1.0.0",
"description": "Simple image gallery made with reactjs",
"main": "index.js",
"scripts": {
"start": "node server.js",
"build": "node_modules/.bin/webpack --config webpack.config.production.js",
"test": "node_modules/.bin/karma start --single-run --no-auto-watch karma.config.js",
"test_watch": "node_modules/.bin/karma start --auto-watch --no-single-run karma.config.js",
"lint": "node_modules/.bin/eslint ./src"
},
"repository": {
"type": "git",
"url": "https://github.com/devportilla/react-gallery.git"
},
"author": "Alberto Portilla",
"dependencies": {
"babel-runtime": "^6.9.2",
"react": "^15.1.0",
"react-addons-test-utils": "^15.3.0",
"react-dom": "^15.1.0",
"whatwg-fetch": "^1.0.0"
},
"devDependencies": {
"autoprefixer": "^6.3.7",
"babel-core": "^6.9.1",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"css-loader": "^0.23.1",
"enzyme": "^2.4.1",
"eslint": "^2.11.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-import-resolver-node": "^0.2.0",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.2.2",
"eslint-plugin-react": "^5.1.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"istanbul-instrumenter-loader": "^0.2.0",
"jasmine-core": "^2.4.1",
"karma": "^0.13.22",
"karma-chrome-launcher": "^1.0.1",
"karma-coverage": "^1.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "^1.7.0",
"node-sass": "^3.8.0",
"phantomjs-polyfill": "0.0.2",
"phantomjs-prebuilt": "^2.1.7",
"postcss-loader": "^0.9.1",
"react-hot-loader": "^1.3.0",
"sass-loader": "^4.0.0",
"sass-resources-loader": "^1.0.2",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
}
}