-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.12 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
{
"name": "sandbox-react",
"version": "0.4.0",
"description": "Sandbox React",
"main": "bin/www",
"scripts": {
"test": "mocha",
"test-watch": "mocha -w --watch-files test/**/*.js",
"prebuild": "rm -rf dist",
"build": "webpack --mode production",
"dev:web": "webpack-dev-server --port 3000",
"dev:api": "env PORT=3001 nodemon --inspect=0.0.0.0 -L -w src/server bin/api",
"start:web": "PORT=3000 node bin/web",
"start:api": "PORT=3001 node bin/api",
"start": "npm-run-all --parallel start:*",
"dev": "npm-run-all --parallel dev:*"
},
"repository": {
"type": "git",
"url": "git://dev.iws.io:sandbox-react.git"
},
"author": "Nathan Bridgewater",
"license": "BSD-3",
"engines": {
"node": "14.x"
},
"browserslist": "defaults",
"dependencies": {
"@hapi/joi": "^17.1.1",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"debug": "^4.3.1",
"express": "^4.17.1",
"express-session": "^1.17.1",
"helmet": "^4.4.1",
"lodash": "^4.17.21",
"moment": "^2.27.0",
"moment-timezone": "^0.5.33",
"morgan": "^1.10.0",
"webpack-cli": "^3.3.12"
},
"devDependencies": {
"@babel/cli": "^7.12.17",
"@babel/core": "^7.12.17",
"@babel/plugin-transform-runtime": "^7.12.17",
"@babel/polyfill": "^7.10.4",
"@babel/preset-env": "^7.12.17",
"@babel/preset-react": "^7.12.13",
"@babel/register": "^7.12.13",
"@babel/runtime": "^7.12.18",
"@fortawesome/fontawesome-free": "^5.15.2",
"@fortawesome/fontawesome-svg-core": "^1.2.34",
"@fortawesome/react-fontawesome": "^0.1.14",
"async": "^3.2.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"bootstrap": "^4.6.0",
"chai": "^4.3.0",
"core-js": "^3.9.0",
"css-loader": "^5.0.2",
"d3": "^6.5.0",
"d3-format": "^2.0.0",
"eslint": "^7.20.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.1.5",
"eslint-plugin-react": "^7.22.0",
"fibers": "^5.0.0",
"html-webpack-plugin": "^4.5.2",
"inflection": "^1.12.0",
"jsdom": "^16.4.0",
"jsdom-global": "^3.0.2",
"mini-css-extract-plugin": "^1.3.8",
"mocha": "^8.3.0",
"node-sass": "^4.14.1",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"popper.js": "^1.16.1",
"postcss-loader": "^4.2.0",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"regenerator-runtime": "^0.13.7",
"sass-loader": "^10.1.1",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.1.1",
"topojson-client": "^3.1.0",
"webpack": "^5.23.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-dev-server": "^3.11.2",
"webpack-hot-middleware": "^2.25.0",
"whatwg-fetch": "^3.6.1"
},
"mocha": {
"reporter": "spec",
"ui": "bdd",
"recursive": true,
"colors": true,
"exit": true,
"require": [
"@babel/register",
"jsdom-global/register",
"globals"
],
"extension": [
"js"
]
}
}