-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.74 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "react-minimal-ts-boilerplate",
"version": "1.0.0",
"description": "Minimal boilerplate for starting react project with typescript",
"main": "dist/index.js",
"scripts": {
"start:app": "NODE_ENV=development webpack-dev-server --open --mode development --content-base dist/ --history-api-fallback --hot --progress --colors --port 3000",
"build": "NODE_ENV=production webpack",
"start": "concurrently -n \"OVERMIND\",\"APP\", -c \"yellow\",\"cyan\" \"overmind-devtools\" \"yarn start:app\"",
"format": "prettier --write --use-tabs 'src/**/*.js'",
"test": "jest"
},
"contributors": [
"Lakhan Samani <[email protected]>",
"Yash Joshi <[email protected]>"
],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@svgr/webpack": "^4.2.0",
"@testing-library/dom": "^6.1.0",
"@testing-library/react": "^9.1.3",
"@types/jest": "^24.0.17",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.2",
"@types/react-router-dom": "^5.1.2",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^2.0.2",
"concurrently": "^5.0.0",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^2.1.1",
"dotenv-webpack": "^1.7.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jest": "^22.5.1",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.13.0",
"file-loader": "^3.0.1",
"html-webpack-harddisk-plugin": "^1.0.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.8.0",
"jest-dom": "^3.2.2",
"monaco-editor-webpack-plugin": "^1.7.0",
"overmind-devtools": "^21.0.0",
"prettier": "^1.17.0",
"raw-loader": "^3.1.0",
"style-loader": "^0.23.1",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"tslint-immutable": "^6.0.1",
"typescript": "^3.5.3",
"url-loader": "^2.0.0",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.3.1",
"write-file-webpack-plugin": "^4.5.0"
},
"dependencies": {
"@chakra-ui/core": "^0.4.1",
"@emotion/core": "^10.0.22",
"@emotion/styled": "^10.0.23",
"babylon": "^6.18.0",
"color": "^3.1.2",
"emotion-theming": "^10.0.19",
"monaco-editor": "^0.18.1",
"monaco-editor-textmate": "^2.2.1",
"monaco-textmate": "^3.0.1",
"onigasm": "^2.2.4",
"overmind": "^21.0.0",
"overmind-react": "^22.0.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-router-dom": "^5.1.2",
"recast": "^0.18.8"
}
}