forked from cesarandreu/web-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.53 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
86
87
{
"name": "stellify-fe-react",
"version": "0.0.1",
"description": "Stellify application designed to be embedded into a parent window",
"main": "./app/index.js",
"private": true,
"scripts": {
"prebuild": "rm -rf ./public",
"build": "webpack --config webpack.build.js --bail -p",
"start": "webpack-dev-server --history-api-fallback --hot --inline --progress",
"test": "karma start",
"tdd": "karma start --auto-watch --no-single-run"
},
"repository": {
"type": "git",
"url": "git+https://100shapes.codebasehq.com/stellify/stellify-fe-react.git"
},
"keywords": [
"web",
"react"
],
"author": "Michele Memoli <[email protected]> (http://100shapes.com)",
"license": "MIT",
"bugs": {
"url": "https://100shapes.codebasehq.com/projects/stellify/tickets?report=all"
},
"standard": {
"parser": "babel-eslint"
},
"babel": {
"stage": 0
},
"homepage": "https://100shapes.com",
"dependencies": {
"cardinalcss": "^3.2.5",
"debug": "^2.2.0",
"history": "^1.13.1",
"react": "^0.14.0",
"react-dom": "^0.14.0",
"react-router": "^1.0.0"
},
"devDependencies": {
"autoprefixer": "^6.0.3",
"babel": "^5.8.23",
"babel-core": "^5.8.25",
"babel-eslint": "^4.1.3",
"babel-loader": "^5.3.2",
"babel-plugin-react-transform": "^1.1.1",
"babel-runtime": "^5.8.25",
"css-loader": "^0.19.0",
"eslint": "^1.6.0",
"eslint-config-standard": "^4.4.0",
"eslint-config-standard-react": "^1.1.0",
"eslint-loader": "^1.1.1",
"eslint-plugin-react": "^3.5.1",
"eslint-plugin-standard": "^1.3.1",
"expect.js": "^0.3.1",
"extract-text-webpack-plugin": "^0.8.2",
"file-loader": "^0.8.4",
"html-webpack-plugin": "^1.6.2",
"isparta-instrumenter-loader": "^0.2.1",
"json-loader": "^0.5.4",
"karma": "^0.13.10",
"karma-coverage": "^0.5.2",
"karma-mocha": "^0.2.0",
"karma-phantomjs-launcher": "^0.2.1",
"karma-sourcemap-loader": "^0.3.5",
"karma-spec-reporter": "0.0.20",
"karma-webpack": "^1.7.0",
"less": "^2.5.3",
"less-loader": "^2.2.1",
"mocha": "^2.3.3",
"node-libs-browser": "^0.5.3",
"null-loader": "^0.1.1",
"phantomjs": "^1.9.18",
"phantomjs-polyfill": "0.0.1",
"postcss-loader": "^0.6.0",
"react-addons-test-utils": "^0.14.0",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.1",
"redbox-react": "^1.1.1",
"standard": "^5.3.1",
"style-loader": "^0.12.4",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.0"
}
}