-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.69 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
{
"name": "age",
"version": "0.0.1",
"description": "Adventure Game Engine",
"main": "index.ts",
"repository": "[email protected]:7yp0/age.git",
"author": "Michael Lückgen [email protected]",
"private": true,
"scripts": {
"build": "NODE_ENV=production ./node_modules/.bin/webpack --config webpack.config.js",
"start": "node ./server/index.js & ./node_modules/.bin/webpack-dev-server --hot --inline",
"start:game": "open ./dist/index.html",
"compile": "./node_modules/.bin/tsc",
"lint": "./node_modules/.bin/tslint -c tslint.json 'src/**/*.ts'",
"precommit": "yarn compile && yarn lint"
},
"dependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"@material-ui/core": "^3.7.1",
"@material-ui/icons": "^3.0.1",
"@types/gl-matrix": "^2.4.4",
"@types/ramda": "^0.25.45",
"@types/react": "^16.7.18",
"@types/react-dom": "^16.0.11",
"@types/uuid": "^3.4.4",
"babel-loader": "^8.0.4",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"express": "^4.16.4",
"gl-matrix": "^2.8.1",
"html-webpack-plugin": "^3.2.0",
"prettier": "^1.15.3",
"ramda": "^0.26.1",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"reselect": "^4.0.0",
"store": "^2.0.12",
"tslint": "^5.12.0",
"tslint-react": "^3.6.0",
"typescript": "^3.2.2",
"url-loader": "^1.1.2",
"uuid": "^3.3.2",
"webpack": "^4.28.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.14"
},
"devDependencies": {}
}