-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
122 lines (122 loc) · 3.76 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "teencode",
"version": "1.0.0",
"description": "building africa's future through tech",
"scripts": {
"start": "webpack-dev-server --mode development --config webpack.config.js",
"open:src": "babel-node tools/srcServer.js",
"lint": "node_modules/.bin/esw webpack.config.* src tools",
"lint:watch": "npm run lint -- --watch",
"test": "jest",
"test:dev": "mocha --reporter spec",
"test:watch": "npm run test -- --watch",
"test:coverage": "rimraf coverage/ && istanbul cover _mocha",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"clean-dist": "npm run remove-dist && mkdir dist",
"remove-dist": "node_modules/.bin/rimraf dist",
"build:html": "babel-node tools/buildHtml.js",
"build": "webpack"
},
"author": "Innocent Amadi",
"license": "MIT",
"dependencies": {
"@babel/node": "^7.2.2",
"@babel/polyfill": "^7.2.5",
"body-parser": "^1.17.2",
"bootstrap": "4.3.1",
"chai": "^3.5.0",
"colors": "^1.1.2",
"compression": "^1.6.2",
"coveralls": "^2.11.12",
"cross-env": "1.0.7",
"css-loader": "2.1.1",
"dompurify": "1.0.1",
"dotenv": "4.0.0",
"eslint-plugin-import": "^1.6.1",
"eslint-watch": "^2.1.11",
"estraverse-fb": "^1.3.1",
"eventsource-polyfill": "0.9.6",
"expect": "^22.4.3",
"express": "^4.14.0",
"extract-text-webpack-plugin": "3.0.2",
"faker": "4.1.0",
"font-awesome": "4.6.3",
"history": "^1.12.5",
"isomorphic-fetch": "^2.2.1",
"istanbul": "^1.0.0-alpha.2",
"jquery": "^3.3.1",
"js-cookie": "2.1.3",
"jsdom": "^9.12.0",
"keymirror": "0.1.1",
"mocha": "^5.1.1",
"nock": "^8.0.0",
"node-sass": "^4.11.0",
"npm-run-all": "^1.8.0",
"open": "0.0.5",
"popover": "^2.4.1",
"popper.js": "^1.14.7",
"raven-js": "^3.26.3",
"react": "^16.3.2",
"react-addons-test-utils": "15.0.2",
"react-disqus-comments": "^1.0.3",
"react-dom": "^16.3.2",
"react-redux": "^4.4.5",
"react-router": "^3.2.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",
"react-waypoint": "^7.0.4",
"redux": "^3.5.2",
"redux-logger": "^3.0.1",
"redux-thunk": "^2.0.1",
"request": "2.81.0",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.3",
"serve-favicon": "^2.4.1",
"sinon": "^1.17.7",
"style-loader": "0.23.1",
"tether": "^1.4.0",
"toastr": "2.1.2",
"underscore": "^1.8.3",
"url-loader": "0.5.7",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/plugin-transform-regenerator": "^7.3.4",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"babel-jest": "^24.1.0",
"babel-loader": "^8.0.5",
"cheerio": "^1.0.0-rc.2",
"copy-webpack-plugin": "^5.0.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.10.0",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-react": "^5.2.2",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.1.0",
"jest-css-modules-transform": "^2.1.1",
"json-loader": "0.5.7",
"react-test-renderer": "^16.8.3",
"supertest": "^3.0.0",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"webpack-dev-middleware": "1.6.1",
"webpack-dev-server": "^3.2.1",
"webpack-hot-middleware": "2.10.0",
"webpack-merge": "^4.2.1"
},
"repository": {
"type": "git",
"url": "https://github.com/andela-iamadi/react-bootstrap-test-starter"
}
}