This repository was archived by the owner on May 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.23 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
{
"name": "react-typeorm-todo",
"version": "1.0.0",
"description": "Very basic Todo MVC example using React, typeorm and TypeScript",
"main": "index.js",
"scripts": {
"start": "TYPEORM_URL=$(./scripts/get_typeorm_url.sh) ts-node ./src/server/index.ts --fast",
"dev": "concurrently \"npm run dev:build\" \"npm run dev:server\"",
"dev:build": "TYPEORM_URL=$(./scripts/get_typeorm_url.sh) webpack --watch",
"dev:server": "TYPEORM_URL=$(./scripts/get_typeorm_url.sh) nodemon --exec 'ts-node' ./src/server/index.ts"
},
"homepage": "https://github.com/jussikinnula/react-typeorm-todo",
"repository": "https://github.com/jussikinnula/react-typeorm-todo",
"author": {
"name": "Jussi Kinnula",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"@types/classnames": "^2.2.6",
"@types/express": "^4.16.0",
"@types/history": "^4.7.2",
"@types/node": "^10.12.10",
"@types/react": "^16.7.7",
"@types/react-dom": "^16.0.10",
"@types/react-redux": "^6.0.10",
"@types/redux-first-router": "^1.9.19",
"@types/redux-first-router-link": "^1.4.4",
"@types/serve-static": "^1.13.2",
"@types/webpack": "^4.4.19",
"@types/webpack-env": "^1.13.6",
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"classnames": "^2.2.6",
"clean-webpack-plugin": "^1.0.0",
"cross-env": "^5.2.0",
"css-loader": "^1.0.1",
"express": "^4.16.4",
"glslify-loader": "^1.0.2",
"history": "^4.7.2",
"html-webpack-plugin": "^3.2.0",
"pg": "^7.6.1",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-redux": "^5.1.1",
"react-router-page-transition-v2": "^1.1.2",
"redux": "^4.0.1",
"redux-first-router": "^1.9.19",
"redux-first-router-link": "^1.4.2",
"reflect-metadata": "^0.1.12",
"serve-static": "^1.13.2",
"static-server": "^2.2.1",
"style-loader": "^0.23.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"ts-loader": "^5.3.1",
"ts-node": "^7.0.1",
"typeorm": "^0.2.9",
"typescript": "^3.1.6",
"webpack": "^4.26.1",
"webpack-cli": "^3.1.2"
},
"devDependencies": {
"concurrently": "^4.1.0",
"dotenv-cli": "^1.4.0",
"nodemon": "^1.18.7",
"webpack-dev-server": "^3.1.10"
}
}