-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
108 lines (108 loc) · 3.36 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "storyshop-app",
"version": "1.0.0",
"description": "Web frontend for StoryShopApp.com",
"main": "index.js",
"scripts": {
"build:webpack": "webpack --config webpack.config.js",
"build:html": "mkdir -p build && cp index.html build/",
"build": "npm run build:html && npm run build:webpack",
"test:unit": "tape -r babel-register -r './conf/specs.js' 'src/**/*spec.js' | faucet",
"test:e2e": "node conf/wdio/run.js | faucet",
"test": "npm run test:unit && echo SKIPPING: e2e tests",
"start": "node server.js",
"dev": "npm run build:html && BUILD_ENV=development webpack-dev-server --hot --inline --config webpack.config.js --content-base build --port 8888 --host 0.0.0.0 --history-api-fallback",
"storybook": "start-storybook -p 9001 -c conf/storybook",
"build-storybook": "build-storybook -c conf/storybook",
"selenium:install": "selenium-standalone install",
"selenium:start": "selenium-standalone start &> /dev/null &",
"selenium": "npm run selenium:install && npm run selenium:start",
"preci": "echo SKIPPING npm run selenium && echo SKIPPING npm run start &> /dev/null &",
"ci": "sleep 5 && npm run test"
},
"babel": {
"presets": [
"es2015",
"stage-0",
"react"
],
"plugins": [
[
"module-resolver",
{
"root": [
"./src"
]
}
]
]
},
"repository": {
"type": "git",
"url": "https://github.com/StoryShop/app.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/StoryShop/app/issues"
},
"homepage": "https://github.com/StoryShop/app#readme",
"devDependencies": {
"@kadira/storybook": "^2.5.2",
"autoprefixer": "^6.3.3",
"babel-loader": "^6.2.2",
"babel-plugin-module-resolver": "^2.2.0",
"babel-polyfill": "^6.5.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-register": "^6.4.3",
"babel-runtime": "^6.5.0",
"css-loader": "^0.23.1",
"debug": "^2.2.0",
"draft-js": "0.9.0",
"draft-js-mention-plugin": "1.1.0",
"draft-js-plugins-editor": "1.1.0",
"enzyme": "^2.4.1",
"express": "^4.13.4",
"falcor": "^0.1.16",
"falcor-http-datasource": "^0.1.3",
"faucet": "0.0.1",
"glob": "^6.0.4",
"history": "^2.0.0",
"invariant": "^2.2.0",
"json-loader": "^0.5.4",
"material-ui": "^0.14.4",
"postcss-js": "^0.1.1",
"react": "^15.3.2",
"react-addons-shallow-compare": "^15.3.2",
"react-addons-test-utils": "^15.3.2",
"react-document-title": "^2.0.1",
"react-dom": "^15.3.2",
"react-dropzone": "^3.4.0",
"react-google-login": "2.5.1",
"react-inline-edit": "^3.0.0",
"react-router": "^2.0.0",
"react-router-redux": "^4.0.0",
"react-side-effect": "^1.0.2",
"react-stamp": "^0.5.1",
"react-tap-event-plugin": "^1.0.0",
"redux": "^3.3.1",
"redux-storage": "^4.0.0",
"redux-storage-engine-localstorage": "^1.0.1",
"redux-thunk": "^2.0.1",
"rxjs": "^5.0.0-beta.7",
"selenium-standalone": "^4.9.0",
"shortid": "^2.2.4",
"skin-deep": "^0.14.0",
"style-loader": "^0.13.1",
"tape": "^4.4.0",
"webdriverio": "^4.0.3",
"webpack": "^1.12.13",
"webpack-dev-server": "^1.14.1",
"whatwg-fetch": "^0.11.0"
},
"dependencies": {
"react-ga": "^2.1.0"
}
}