-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (78 loc) · 2.7 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
{
"name": "fzz-plugin",
"description": "Fazz™ plugin for websites, Chrome, demo, and internal usage",
"version": "1.0.0",
"author": "Trendi Guru Ltd.",
"license": "UNLICENSED",
"main": "plugin/js/plugin.js",
"private": true,
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/trendiguru/fzz-plugin.git"
},
"bugs": {
"url": "https://github.com/trendiguru/fzz-plugin/issues"
},
"homepage": "https://github.com/trendiguru/fzz-plugin#readme",
"keywords": [],
"scripts": {
"init": "npm i -g webpack",
"start": "cp manifest.dev.json manifest.json && ENVIRONMENT=DEV npm run watch",
"test": "mocha test/basicTest.js",
"local-test": "ENVIRONMENT=LOCAL_TEST webpack --progress && node test/nightmare",
"build": "zip app.zip manifest.json, b_plugin.js, b_plugin.css, b_app.local.js, b_app.css, app/app.local.html",
"publish": "cp manifest.production.json manifest.json && ./upload_to_gs.sh fzz",
"watch": "yarn run bundle -- --watch",
"bundle": "webpack --progress",
"serve": "python -c \"import BaseHTTPServer, SimpleHTTPServer;import ssl;httpd = BaseHTTPServer.HTTPServer(('localhost', 4443), SimpleHTTPServer.SimpleHTTPRequestHandler);httpd.socket = ssl.wrap_socket (httpd.socket, certfile='./server.pem', server_side=True);httpd.serve_forever()\"",
"stop": "pkill -f python.*HTTP.*4443"
},
"dependencies": {
"bowser": "^1.6.0",
"classlist-polyfill": "^1.0.3",
"classnames": "^2.2.5",
"custom-event-polyfill": "^0.3.0",
"es6-promise": "^4.0.5 ",
"imagesloaded": "^4.1.1",
"js-cookie": "^2.1.3",
"mixpanel-browser": "^2.9.16",
"mobx": "^3.1.5",
"mobx-react": "^4.1.3",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"whatwg-fetch": "^2.0.3",
"wicked-good-xpath": "^1.3.0"
},
"devDependencies": {
"autoprefixer": "^6.7.6",
"babel-core": "^6.17.0",
"babel-eslint": "^7.1.0",
"babel-generator": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-plugin-transform-es3-member-expression-literals": "^6.8.0",
"babel-plugin-transform-es3-property-literals": "^6.8.0",
"babel-polyfill": "^6.16.0 ",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"chai": "^3.5.0",
"css-loader": "^0.25.0",
"eslint-config-infashion": "^1.1.1",
"expose-loader": "^0.7.1",
"extract-text-webpack-plugin": "^1.0.1",
"mocha": "^3.1.2",
"mocha-generators": "^1.2.0",
"nightmare": "^2.7.0",
"nightmare-iframe-manager": "0.0.2",
"node-sass": "^3.10.1",
"postcss-loader": "^1.0.0 ",
"sass-loader": "^4.0.2",
"webpack": "^1.13.2"
},
"babel": {
"presets": [
"es2015",
"react"
]
}
}