-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.99 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
{
"name": "react-playground",
"version": "0.0.0",
"description": "Environment for playing with React",
"main": "index.js",
"author": "Davide Giuseppe Monaco <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"build": "cross-env TS_NODE_PROJECT=\"webpack/tsconfig-webpack.json\" webpack --mode production",
"clean": "rm -rf dist/",
"start": "cross-env TS_NODE_PROJECT=\"webpack/tsconfig-webpack.json\" webpack-dev-server --mode development",
"test": "jest",
"test:w": "jest --watch"
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^10.4.9",
"@types/lodash.curry": "^4.1.6",
"@types/node": "^14.6.0",
"@types/react": "^16.9.46",
"@types/react-dom": "^16.9.8",
"@types/react-grid-layout": "^0.17.2",
"@types/react-router-dom": "^5.1.5",
"@types/webpack": "^4.41.21",
"@types/webpack-dev-server": "^3.11.0",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"babel-loader": "^8.1.0",
"cross-env": "^7.0.2",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"fork-ts-checker-webpack-plugin": "^5.1.0",
"html-loader": "^1.2.1",
"html-webpack-plugin": "^4.3.0",
"jest": "^26.4.2",
"prettier": "^2.0.5",
"source-map-loader": "^1.0.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@emotion/core": "^10.0.35",
"@emotion/styled": "^10.0.27",
"lodash.curry": "^4.1.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-grid-layout": "^1.0.0",
"react-router-dom": "^5.2.0"
}
}