-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.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
{
"name": "catapult-sample",
"version": "1.0.0",
"author": "Chris Calo",
"private": true,
"license": "© 2018 Chris Calo",
"repository": "github:chris-calo/catapult-sample",
"description": "Technical sample, requested by Hari Namduri",
"scripts": {
"build": "webpack --config config/webpack-production.js",
"start": "webpack-dev-server --config config/webpack-development.js",
"test": "npm run build && jest",
"clean": "if [ -d 'build' ]; then rm -rf build; fi"
},
"babel": {
"presets": [
"env",
"react"
],
"plugins": [
"transform-object-rest-spread",
"syntax-dynamic-import",
[
"transform-runtime",
{
"polyfill": false,
"regenerator": true
}
]
]
},
"devDependencies": {
"autoprefixer": "^8.5.1",
"colors": "^1.3.0",
"copy": "^0.3.2",
"css-loader": "^0.28.11",
"extract-css-chunks-webpack-plugin": "^3.0.1",
"file-loader": "^1.1.11",
"jest": "^23.6.0",
"log-update": "^2.3.0",
"mini-css-extract-plugin": "^0.4.0",
"node-sass": "^4.9.0",
"postcss-loader": "^2.1.5",
"pretty-bytes": "^5.1.0",
"react-dev-utils": "^5.0.1",
"react-hot-loader": "^4.2.0",
"sass-loader": "^7.0.1",
"time-stamp": "^2.0.0",
"url-loader": "^1.0.1",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.4",
"webpack-dev-server": "^3.1.4",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-runtime": "^6.26.0",
"bcrypt": "^3.0.2",
"classnames": "^2.2.5",
"email-validator": "^2.0.4",
"eslint": "^4.19.1",
"eslint-loader": "^2.0.0",
"isomorphic-fetch": "^2.2.1",
"kcors": "^2.2.1",
"koa": "^2.5.1",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"koa-static": "^4.0.3",
"my-local-ip": "^1.0.0",
"node-fetch": "^2.1.2",
"preact": "^8.2.9",
"preact-compat": "^3.18.3",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-router-dom": "^4.2.2",
"serialize-javascript": "^1.5.0",
"store": "^2.0.12",
"truncate": "^2.0.1",
"uglifyjs-webpack-plugin": "^1.2.5",
"uuid": "^3.3.2"
}
}