-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.85 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
{
"name": "ld44",
"version": "1.0.0",
"description": "ludum dare 44",
"main": "dist/bundle.js",
"scripts": {
"dev": "webpack-dev-server --port=3000 --config=webpack-config/dev.js --progress --colors --mode=development",
"build": "webpack --config=webpack-config/prod.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CorvusClub/ld44.git"
},
"author": "Corvus Club",
"license": "MIT",
"bugs": {
"url": "https://github.com/CorvusClub/ld44/issues"
},
"homepage": "https://github.com/CorvusClub/ld44#readme",
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@hot-loader/react-dom": "^16.8.6",
"@types/node": "^11.13.8",
"@types/react": "^16.8.14",
"@types/react-dom": "^16.8.4",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^2.0.1",
"css-loader": "^2.1.1",
"file-loader": "^3.0.1",
"fork-ts-checker-webpack-plugin": "^1.2.0",
"html-webpack-plugin": "^3.2.0",
"react-hot-loader": "^4.8.4",
"redux-devtools-extension": "^2.13.8",
"style-loader": "^0.23.1",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"tslint-config-prettier": "^1.18.0",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1",
"webpack-dev-server": "^3.3.1",
"webpack-merge": "^4.2.1"
},
"dependencies": {
"@babel/core": "^7.4.4",
"@types/react-redux": "^7.0.8",
"babel-runtime": "^6.26.0",
"inkjs": "^1.9.0",
"moize": "^5.4.4",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.0.2",
"redux": "^4.0.1",
"redux-saga": "^1.0.2",
"tslint": "^5.16.0",
"tslint-consistent-codestyle": "^1.15.1",
"tslint-microsoft-contrib": "^6.1.1",
"tslint-react": "^4.0.0",
"typescript": "^3.4.5"
}
}