-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
100 lines (100 loc) · 3.29 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
{
"name": "palantarot",
"version": "1.0.0",
"description": "Palantir French Tarot site",
"main": "build/server/index.js",
"author": "gcole <gtc.cole@gmail.com>",
"license": "MIT",
"scripts": {
"build:app": "webpack --config webpack-app.config.js --mode development",
"watch:server": "webpack -w --config webpack-server.config.js --mode development",
"watch:simulator": "webpack -w --config webpack-simulator.config.js --mode development",
"watch:migration": "webpack -w --config webpack-migration.config.js --mode development",
"watch:app": "webpack serve --config webpack-app.config.js --mode development",
"dist:app": "webpack --config webpack-app.config.js --mode production",
"dist:server": "webpack --config webpack-server.config.js --mode production",
"dist:migration": "webpack --config webpack-migration.config.js --mode production",
"tsversion": "tsc -v"
},
"dependencies": {
"apisauce": "^1.1.1",
"body-parser": "^1.17.1",
"classnames": "^2.2.5",
"cookie-parser": "^1.4.3",
"cors": "^2.8.3",
"express": "^4.15.2",
"lodash": "^4.17.21",
"moment": "^2.18.0",
"moment-timezone": "^0.5.11",
"morgan": "^1.8.1",
"normalize.css": "^5.0.0",
"pg": "^8.7.1",
"plottable": "^3.3.1",
"process": "^0.11.10",
"prop-types": "^15.6.1",
"react": "16.2.0",
"react-color": "^2.19.3",
"react-dom": "^16.2.0",
"react-redux": "^5.0.7",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-transition-group": "^2.3.0",
"redoodle": "^2.3.2",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-saga": "^1.1.3",
"reselect": "^3.0.1",
"ws": "^7.4.6",
"yargs": "^16.2.0"
},
"devDependencies": {
"@blueprintjs/core": "3.14.1",
"@blueprintjs/datetime": "^3.7.2",
"@blueprintjs/select": "^3.7.0",
"@types/body-parser": "^1.16.0",
"@types/classnames": "^2.2.3",
"@types/cookie-parser": "^1.3.30",
"@types/cors": "^2.8.1",
"@types/debug": "^0.0.29",
"@types/express": "^4.0.35",
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.122",
"@types/moment-timezone": "^0.2.34",
"@types/morgan": "^1.7.32",
"@types/mysql": "^0.0.31",
"@types/pg": "^7.4.11",
"@types/prop-types": "^15.5.2",
"@types/pure-render-decorator": "^0.2.27",
"@types/react": "^16.1.0",
"@types/react-color": "^3.0.4",
"@types/react-dom": "^16.0.4",
"@types/react-redux": "^4.4.37",
"@types/react-router": "^4.0.23",
"@types/react-router-dom": "^4.2.6",
"@types/redux-logger": "^3.0.5",
"@types/reselect": "^2.2.0",
"@types/vinyl": "^2.0.2",
"@types/ws": "^7.2.1",
"@types/yargs": "^16.0.0",
"babel-core": "^6.24.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"babel-register": "^6.24.0",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^7.1.2",
"gulp-babel": "^6.1.2",
"html-webpack-plugin": "^5.3.2",
"jest": "^27.0.6",
"mini-css-extract-plugin": "^2.9.0",
"node-sass": "^9.0.0",
"sass-loader": "^14.2.1",
"style-loader": "^4.0.0",
"ts-jest": "^27.0.4",
"ts-loader": "^9.5.1",
"typescript": "^4.0.3",
"webpack": "^5.92.1",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.1",
"webpack-node-externals": "^1.7.2"
}
}