-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.63 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
{
"name": "react-webpack-starter",
"version": "1.0.0",
"description": "React webpack starter template",
"main": "lib/index.js",
"dependencies": {},
"author": {
"name": "Krasimir Tsonev",
"email": "info@krasimirtsonev.com",
"url": "http://krasimirtsonev.com"
},
"license": "MIT",
"keywords": [
"react",
"carousel",
"responsive"
],
"repository": {
"type": "git",
"url": "git@github.com:krasimir/react-webpack-starter.git"
},
"scripts": {
"dev": "./node_modules/.bin/webpack --watch --inline",
"build": "./node_modules/.bin/webpack --config=webpack.build.config.js",
"test": "karma start",
"test:ci": "watch 'npm run test' src/"
},
"devDependencies": {
"babel": "6.5.2",
"babel-core": "6.6.5",
"babel-eslint": "7.2.1",
"babel-loader": "6.2.4",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"chai": "3.3.0",
"core-js": "1.1.4",
"eslint": "3.19.0",
"eslint-loader": "1.7.1",
"eslint-plugin-react": "6.10.3",
"karma": "0.13.19",
"karma-chai": "0.1.0",
"karma-chai-plugins": "0.6.0",
"karma-chai-sinon": "0.1.5",
"karma-chrome-launcher": "0.2.0",
"karma-mocha": "0.2.0",
"karma-mocha-reporter": "1.1.1",
"karma-phantomjs-launcher": "1.0.2",
"karma-sinon": "1.0.4",
"karma-sinon-chai": "1.1.0",
"karma-sourcemap-loader": "0.3.5",
"karma-webpack": "1.7.0",
"mocha": "2.3.4",
"phantomjs": "1.9.19",
"react": "15.2.0",
"react-addons-test-utils": "15.2.0",
"react-dom": "15.2.0",
"watch": "0.16.0",
"webpack": "1.12.2",
"webpack-dev-server": "1.11.0"
}
}