-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.07 KB
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
{
"name": "education_game_manager",
"version": "1.0.0",
"main": "src/index.tsx",
"repository": "https://github.com/WarHatch/EducationGameManeger",
"author": "Karolis Staskevičius",
"license": "MIT",
"scripts": {
"dev": "webpack --mode development && webpack-dev-server --mode development",
"lint": "tslint src/**/*.ts*",
"lint:fix": "tslint src/**/*.ts* --fix",
"build": "webpack --mode production",
"start": "cross-env NODE_ENV=production node server.js"
},
"dependencies": {
"@sanity/client": "^1.149.2",
"axios": "^0.19.0",
"bootstrap": "^4.4.1",
"cors": "^2.8.5",
"cross-env": "^6.0.3",
"express": "^4.17.1",
"file-loader": "^5.0.2",
"moment": "^2.24.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-router-dom": "^5.1.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"devDependencies": {
"@types/react": "^16.9.17",
"@types/react-router-dom": "^5.1.3",
"ts-loader": "^6.2.1",
"tslint": "^5.20.1",
"typescript": "^3.7.2",
"webpack-dev-server": "^3.9.0"
}
}