-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
52 lines (52 loc) · 1.45 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
{
"name": "rpg-story-engine",
"version": "1.0.0",
"description": "A role-playing story generation engine.",
"repository": "https://github.com/Glinkis/rpg-story-engine.git",
"author": "Victor Glindås <glinkis@gmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"start": "ts-node server",
"start:watch": "nodemon",
"build": "webpack --mode production",
"build:watch": "webpack --mode development --watch",
"lint": "eslint **/*.ts && prettier **/*.ts --check",
"lint:fix": "eslint **/*.ts --fix && prettier **/*.ts --write",
"heroku-postbuild": "yarn build"
},
"nodemonConfig": {
"watch": [
"server",
"client"
],
"ext": "ts,tsx"
},
"dependencies": {
"@emotion/core": "10.0.27",
"@emotion/styled": "10.0.27",
"@types/compression": "1.0.1",
"@types/express": "4.17.2",
"@types/node": "13.1.8",
"@types/react": "16.9.19",
"@types/react-dom": "16.9.5",
"@types/webpack": "4.41.3",
"@typescript-eslint/eslint-plugin": "2.17.0",
"@typescript-eslint/parser": "2.17.0",
"chalk": "3.0.0",
"compression": "1.7.4",
"eslint": "6.8.0",
"eslint-config-prettier": "6.9.0",
"express": "4.17.1",
"nodemon": "2.0.2",
"prettier": "1.19.1",
"randoma": "1.3.0",
"react": "16.12.0",
"react-dom": "16.12.0",
"ts-loader": "6.2.1",
"ts-node": "8.6.2",
"typescript": "3.7.5",
"webpack": "4.41.5",
"webpack-cli": "3.3.10"
}
}