-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.25 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
{
"name": "yarsk",
"version": "1.0.0",
"description": "My React starter kit. Webpack, Babel, Sass, React 0.14 and more.",
"license": "MIT",
"author": "Brad Daily <brad@bradleyboy.com>",
"main": "app/index.js",
"scripts": {
"test": "./node_modules/karma/bin/karma start conf/karma.conf.js --single-run",
"test:watch": "./node_modules/karma/bin/karma start conf/karma.conf.js",
"test:coverage": "./node_modules/karma/bin/karma start conf/karma.coverage.conf.js --single-run",
"test:ci": "./node_modules/karma/bin/karma start conf/karma.ci.conf.js --single-run",
"start": "./node_modules/.bin/webpack-dev-server --config conf/webpack.config.js --inline --hot --progress --colors --content-base ./build",
"build": "./node_modules/.bin/webpack --config conf/webpack.production.js",
"autosite": "./node_modules/.bin/webpack --config conf/webpack.autosite.js",
"build:gh": "npm run build && node ./build-gh-pages.js && rm -r ./dist"
},
"dependencies": {
"json-loader": "^0.5.4",
"marked": "^0.3.5",
"react": "^0.14.0",
"react-addons-css-transition-group": "^0.14.8",
"react-css-transition-replace": "^1.2.0-beta",
"react-dom": "^0.14.0"
},
"devDependencies": {
"autoprefixer-loader": "^2.0.0",
"babel-core": "^5.0.0",
"babel-eslint": "^4.0.0",
"babel-loader": "^5.0.0",
"chai": "^3.4.1",
"copy-webpack-plugin": "^2.1.1",
"css-loader": "^0.14.0",
"eslint": "^0.17.1",
"eslint-loader": "^0.7.0",
"extract-text-webpack-plugin": "^0.8.2",
"file-loader": "^0.8.1",
"gh-pages": "^0.2.0",
"html-webpack-plugin": "^1.1.0",
"isparta": "^3.0.0",
"isparta-instrumenter-loader": "^0.2.1",
"karma": "^0.12.31",
"karma-chai": "^0.1.0",
"karma-coverage": "^0.2.7",
"karma-mocha": "^0.1.10",
"karma-mocha-reporter": "^1.0.2",
"karma-notify-reporter": "^0.1.1",
"karma-phantomjs-launcher": "^0.1.4",
"karma-webpack": "^1.5.0",
"less": "^2.4.0",
"less-loader": "^2.1.0",
"mocha": "^2.3.4",
"node-sass": "^3.4.2",
"react-addons-test-utils": "^0.14.0",
"react-hot-loader": "^1.2.3",
"sass-loader": "^1.0.0",
"style-loader": "^0.12.0",
"url-loader": "^0.5.5",
"webpack": "^1.9.0",
"webpack-dev-server": "^1.9.0"
}
}