-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.92 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
{
"name": "adjourn",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/ulrichsg/adjourn",
"author": "Ulrich Schmidt-Goertz",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server",
"bundle": "webpack --mode=production",
"lint:ts": "tslint -p tsconfig.json -c tslint.json",
"lint:css": "stylelint './src/**/*.ts[x]'"
},
"dependencies": {
"@babel/polyfill": "^7.8.3",
"@types/react": "^16.8.12",
"@types/react-beautiful-dnd": "^11.0.1",
"@types/react-dom": "^16.8.3",
"@types/react-redux": "^7.1.7",
"@types/styled-components": "^4.1.13",
"@types/uuid": "^3.4.4",
"antd": "^3.16.3",
"immer": "^2.1.5",
"localforage": "^1.7.3",
"moment": "^2.8.0",
"react": "^16.8.6",
"react-beautiful-dnd": "^11.0.0",
"react-dom": "^16.8.6",
"react-redux": "^7.1.3",
"redux": "^4.0.1",
"redux-persist": "^5.10.0",
"styled-components": "^4.2.0",
"typescript": "^3.4.2",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"babel-loader": "^8.0.5",
"babel-plugin-styled-components": "^1.10.0",
"css-loader": "^2.1.1",
"extract-loader": "^3.1.0",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"moment-locales-webpack-plugin": "^1.0.7",
"stylelint": "^13.1.0",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.9.0",
"tslint": "^5.15.0",
"tslint-react": "^4.0.0",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.2.1"
}
}