-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.51 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.51 KB
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
{
"name": "@prodo-example/kanban",
"version": "0.1.7",
"license": "MIT",
"private": true,
"scripts": {
"clean": "rm -rf .cache build dist lib tsconfig.tsbuildinfo",
"start": "webpack-dev-server --config webpack.config.js --mode=development --history-api-fallback --hot",
"test": "jest --passWithNoTests",
"lint": "set -ex; tsc --build;"
},
"dependencies": {
"@prodo/core": "^0.1.7",
"@prodo/devtools": "^0.1.7",
"@prodo/effect": "^0.1.7",
"@prodo/logger": "^0.1.7",
"@prodo/route": "^0.1.7",
"classnames": "^2.2.5",
"core-js": "2",
"date-fns": "^1.29.0",
"history": "^4.10.1",
"marked": "^0.3.19",
"react": "^16.8.6",
"react-aria-menubutton": "^6.1.0",
"react-beautiful-dnd": "^11.0.5",
"react-day-picker": "^7.1.9",
"react-dom": "^16.9.0",
"react-error-boundary": "^1.2.5",
"react-head": "^2.1.0",
"react-icons": "^2.2.7",
"react-modal": "^3.4.4",
"react-onclickoutside": "^6.7.1",
"react-textarea-autosize": "^6.1.0",
"shortid": "^2.2.8",
"slugify": "^1.3.0"
},
"devDependencies": {
"@babel/core": "^7.0.0-0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/polyfill": "^7.6.0",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@prodo/babel-plugin": "^0.1.2",
"@testing-library/react": "^9.1.3",
"@types/classnames": "^2.2.9",
"@types/jest": "^24.0.18",
"@types/marked": "^0.6.5",
"@types/node": "^12.7.2",
"@types/react": "^16.8.25",
"@types/react-beautiful-dnd": "^11.0.3",
"@types/react-dom": "^16.8.5",
"@types/react-icons": "^2.2.7",
"@types/react-onclickoutside": "^6.7.3",
"@types/react-textarea-autosize": "^4.3.4",
"@types/shortid": "^0.0.29",
"@types/testing-library__react": "^9.1.1",
"@types/webpack-env": "^1.14.0",
"babel-loader": "^8.0.6",
"css-loader": "^3.2.0",
"file-loader": "^4.2.0",
"fork-ts-checker-webpack-plugin": "^1.5.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.9.0",
"node-sass": "^4.12.0",
"sass": "^1.22.9",
"sass-loader": "^8.0.0",
"source-map-loader": "^0.2.4",
"style-loader": "^1.0.0",
"ts-jest": "^24.0.2",
"typescript": "^3.6.2",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.1"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "babel-jest"
},
"moduleNameMapper": {
"\\.(svg|jpg|scss|css|png)$": "<rootDir>/tests/__mock__.js"
}
}
}