-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.48 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
{
"name": "hiddenwisdom-react-js",
"description": "hidden wisdom front end proj.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/lagos-devs/hiddenwisdom-react-js.git"
},
"scripts": {
"start": "npm-run-all --parallel open:src lint:watch",
"prod": "NODE_ENV=production node tools/distServer.js",
"open:src": "babel-node tools/srcServer.js",
"test": "mocha --reporter progress tools/testSetup.js \"src/**/*.spec.js\"",
"test:watch": "npm run test -- --watch",
"test:coverage": "rimraf coverage/ && istanbul cover _mocha tools/testSetup.js \"src/**/*.spec.js\"",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"lint": "esw webpack.config.* src tools --color",
"lint:watch": "npm run lint -- --watch",
"clean-dist": "npm run remove-dist && mkdir dist",
"remove-dist": "node_modules/.bin/rimraf dist",
"build:html": "babel-node tools/buildHtml.js",
"prebuild": "npm-run-all clean-dist test build:html",
"build": "babel-node tools/build.js",
"postbuild": "babel-node tools/distServer.js"
},
"license": "MIT",
"dependencies": {
"babel-polyfill": "6.8.0",
"babel-runtime": "6.6.1",
"bootstrap": "4.0.0-alpha.3",
"compression": "^1.6.2",
"express": "^4.14.0",
"font-awesome": "4.6.3",
"history": "^1.12.5",
"isomorphic-fetch": "^2.2.1",
"js-cookie": "2.1.3",
"keymirror": "0.1.1",
"react": "~15.2.1",
"react-dom": "~15.2.1",
"react-redux": "4.4.5",
"react-router": "2.4.0",
"react-router-redux": "4.0.4",
"react-select": "^1.0.0-rc.1",
"react-static-container": "^1.0.1",
"react-tinymce": "^0.5.1",
"redux": "3.5.2",
"redux-thunk": "2.0.1",
"sinon": "^1.17.4",
"toastr": "2.1.2",
"twitter-bootstrap-wizard": "^1.2.0",
"underscore": "^1.8.3",
"url-loader": "^0.5.6",
"webpack": "^1.12.2"
},
"devDependencies": {
"babel-cli": "6.8.0",
"babel-core": "^6.8.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-dev-expression": "^0.1.0",
"babel-plugin-react-display-name": "2.0.0",
"babel-plugin-react-transform": "^2.0.0",
"babel-plugin-transform-runtime": "^6.3.13",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"babel-preset-react-hmre": "1.1.1",
"babel-preset-stage-2": "^6.11.0",
"babel-register": "6.8.0",
"compression": "1.6.1",
"cross-env": "1.0.7",
"css-loader": "0.23.1",
"colors": "^1.1.2",
"coveralls": "^2.11.12",
"enzyme": "^2.3.0",
"eslint": "^2.9.0",
"eslint-plugin-import": "^1.6.1",
"eslint-plugin-react": "^5.0.1",
"eslint-watch": "^2.1.11",
"eventsource-polyfill": "0.9.6",
"expect": "^1.19.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "0.8.5",
"istanbul": "^1.0.0-alpha.2",
"jsdom": "^9.2.1",
"mocha": "^2.4.5",
"node-sass": "3.8.0",
"nock": "^8.0.0",
"npm-run-all": "^1.8.0",
"open": "0.0.5",
"react-addons-test-utils": "15.0.2",
"redux-immutable-state-invariant": "1.2.3",
"redux-mock-store": "1.0.2",
"rimraf": "2.5.2",
"sass-loader": "^3.0.0",
"style-loader": "^0.12.4",
"webpack-dev-middleware": "^1.2.0",
"webpack-dev-server": "^1.12.0",
"webpack-hot-middleware": "^2.6.0"
},
"bugs": {
"url": "https://github.com/lagos-devs/hiddenwisdom-react-js/issues"
},
"homepage": "https://github.com/lagos-devs/hiddenwisdom-react-js#readme"
}