-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.89 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
{
"name": "tarjan-map-tool",
"description": "Grid based map tool for mapping dungeons in old CRPGs. Named after the Mad God in the original Bard's Tale to give you an idea of what kind of games it is intended to map",
"version": "0.0.1",
"main": "index.js",
"author": "Anders Hellerup Madsen <ahm@issuu.com>",
"license": "MIT",
"scripts": {
"storybook": "start-storybook",
"build": "webpack -p --mode=production"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@babel/register": "^7.8.3",
"@storybook/addon-actions": "^5.3.9",
"@storybook/addon-info": "^5.3.9",
"@storybook/react": "^5.3.9",
"@types/draft-js": "^0.10.38",
"@types/filesystem": "^0.0.29",
"@types/jest": "^24.9.1",
"@types/react-dom": "^16.9.5",
"@types/styled-components": "^4.4.2",
"@types/webpack": "^4.41.3",
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"babel-loader": "^8.0.6",
"babel-plugin-styled-components": "^1.10.7",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.0",
"jest": "^25.1.0",
"jest-environment-jsdom-global": "^1.2.0",
"prettier": "^1.19.1",
"prettier-eslint": "^9.0.1",
"ts-jest": "^25.0.0",
"typescript": "^3.7.5",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"draft-js": "^0.11.4",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-is": "^16.12.0",
"styled-components": "^5.0.0"
}
}