-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
60 lines (60 loc) · 1.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
{
"name": "channel_chat",
"version": "0.0.1",
"description": "channel_chat",
"main": "static/js/index.react.js",
"dependencies": {
"babel-polyfill": "^6.9.1",
"bootstrap": "^3.3.6",
"dateformat": "^1.0.12",
"keymirror": "~0.1.1",
"lodash": "^4.13.1",
"react": "^15.2.1",
"react-dom": "^15.2.1",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"redux-logger": "^2.6.1",
"redux-thunk": "^2.1.0",
"shopify-reconnecting-websocket": "^0.1.0",
"sinon": "^1.17.4"
},
"devDependencies": {
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"chai": "^3.5.0",
"envify": "^3.4.1",
"enzyme": "^2.4.1",
"eslint": "^2.9.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.10.2",
"eslint-plugin-jsx-a11y": "^1.2.0",
"eslint-plugin-react": "^5.2.2",
"jsdom": "^9.4.1",
"less": "^2.7.1",
"less-plugin-clean-css": "^1.5.1",
"mocha": "^2.5.3",
"react-addons-test-utils": "^15.2.1",
"redux-mock-store": "^1.1.2",
"uglifyjs": "^2.4.10",
"watchify": "^3.7.0"
},
"scripts": {
"start": "watchify -o static/bundle.js -v -d .",
"build": "NODE_ENV=production browserify . | uglifyjs -cm > static/bundle.js",
"less": "lessc --clean-css static/less/base.less static/style.min.css",
"lint": "eslint static/js",
"test": "mocha --compilers js:babel-register --require static/js/__tests__/setup.js --recursive static/js",
"test:watch": "npm test -- --watch"
},
"browserify": {
"transform": [
"babelify",
"envify"
]
},
"author": "John Paulett <[email protected]>",
"license": "BSD",
"private": true
}