-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.57 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
{
"name": "travelr-js.client",
"version": "1.0.0",
"description": "Port of LAMP application to JS",
"author": "Jake Toolson",
"repository": {
"type": "git",
"url": "https://github.com/jaketoolson/travelr-js"
},
"scripts": {
"clean": "rimraf dist",
"copy:assets": "ts-node copyAssets.ts",
"build": "NODE_ENV=development && ./node_modules/webpack/bin/webpack.js --config webpack.config.js && npm run copy:assets",
"build:prod": "npm run clean && ./node_modules/webpack/bin/webpack.js --config webpack.config.js",
"watch": "npm run build -- --watch --watch-poll --progress",
"start": "http-server --proxy http://localhost:8080?"
},
"dependencies": {
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"axios": "^0.19.2",
"dotenv": "^8.2.0",
"inert": "^5.1.0",
"lodash": "^4.17.15",
"moment": "^2.26.0",
"multiselect-react-dropdown": "^1.5.0",
"qs": "^6.5.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-js-pagination": "^3.0.3",
"react-redux": "^7.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.4.1",
"react-spinners": "^0.3.2",
"redux": "^4.0.5"
},
"devDependencies": {
"file-loader": "1.1.6",
"http-server": "^0.12.3",
"html-webpack-plugin": "3.2.0",
"rimraf": "^3.0.2",
"redux-devtools": "^3.5.0",
"shelljs": "^0.8.4",
"ts-loader": "^5.4.5",
"typescript": "^3.9.3",
"webpack": "^4.43.0",
"webpack-assets-manifest": "^1.0.0",
"webpack-cli": "^3.3.11"
},
"engines": {
"node": ">= 8",
"npm": "^5.0.0"
}
}