-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 857 Bytes
/
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
{
"name": "CrayonsClayApp",
"version": "0.0.1",
"description": "Awesome project developed with TypeORM.",
"devDependencies": {
"@types/node": "^8.0.29",
"nodemon": "^1.17.5",
"ts-node": "3.3.0",
"tsnodemon": "^1.1.2",
"typescript": "2.5.2"
},
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.1",
"concurrently": "^3.5.1",
"cors": "^2.8.4",
"express": "^4.15.4",
"multer": "^1.3.0",
"mysql": "^2.14.1",
"react-router-dom": "^4.3.1",
"reflect-metadata": "^0.1.10",
"routing-controllers": "^0.7.7",
"typeorm": "0.2.6"
},
"scripts": {
"start": "ts-node src/index.ts",
"server": "ts-nodemon src/index.ts",
"client": "npm start --prefix client",
"dev": "concurrently \"npm start\" \"npm run client\""
}
}