-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.61 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
{
"name": "educational_game_element_api",
"version": "1.2.0",
"description": "API that stores, prepares and delivers educational web game elements",
"main": "server.ts",
"repository": "https://github.com/WarHatch/EducationGameElementAPI",
"author": "Karolis Staskevičius",
"license": "MIT",
"scripts": {
"dev": "cross-env NODE_ENV=dev concurrently --kill-others \"yarn webpack --watch\" \"yarn tsnd src/server.ts\"",
"lint": "tslint src/**/*.ts*",
"lint:fix": "tslint src/**/*.ts* --fix",
"build": "webpack --mode production & tsc -p tsconfig.json",
"start": "cross-env NODE_ENV=production node dist/server.js"
},
"dependencies": {
"@sanity/client": "^0.146.0",
"@sanity/image-url": "^0.140.17",
"arrive": "^2.4.1",
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"cross-env": "^6.0.3",
"css-loader": "^3.3.0",
"express": "^4.17.1",
"file-loader": "^5.0.2",
"lodash": "^4.17.15",
"pg": "^7.17.1",
"pg-hstore": "^2.3.3",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"sequelize": "^5.21.2",
"style-loader": "^1.0.1",
"ts-loader": "^6.2.1",
"uuid": "^3.3.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.10"
},
"devDependencies": {
"@types/cors": "^2.8.6",
"@types/express": "^4.17.2",
"@types/node": "^12.12.14",
"@types/react": "^16.9.14",
"@types/react-dom": "^16.9.4",
"@types/sequelize": "^4.28.8",
"@types/uuid": "^3.4.6",
"concurrently": "^5.0.1",
"mysql2": "^2.0.2",
"ts-node-dev": "^1.0.0-pre.44",
"tslint": "^5.20.1",
"typescript": "^3.7.2"
}
}