-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
86 lines (86 loc) · 2.81 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": "css-grid-layout-generator",
"version": "1.8.0",
"private": true,
"scripts": {
"start": "npm run dev:app",
"dev:app": "babel-node node_modules/webpack-dev-server/bin/webpack-dev-server",
"build:app": "npm run clean && babel-node node_modules/webpack/bin/webpack",
"clean": "rimraf dist",
"lint:code": "tslint src/**/*.ts src/**/*.tsx -t stylish",
"lint:style": "stylelint src/**/*.css src/**/*.scss --syntax scss",
"precommit": "pretty-quick --staged",
"prepush": "npm-run-all --parallel lint:code lint:style",
"release": "standard-version --no-verify"
},
"engines": {
"node": ">=10.3.0",
"npm": ">=6.1.0"
},
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/node": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.2.0",
"@types/node": "^10.12.12",
"@types/react": "^16.7.13",
"@types/react-beautiful-dnd": "^7.1.2",
"@types/react-dom": "^16.0.11",
"autoprefixer": "^8.6.5",
"awesome-typescript-loader": "^5.2.1",
"base64-inline-loader": "^1.1.1",
"commitizen": "^3.0.5",
"copy-webpack-plugin": "^4.6.0",
"critters-webpack-plugin": "^2.1.1",
"css-loader": "^0.28.11",
"cz-conventional-changelog": "^2.1.0",
"fork-ts-checker-webpack-plugin": "^0.4.15",
"html-webpack-exclude-assets-plugin": "0.0.7",
"html-webpack-plugin": "^3.2.0",
"husky": "^0.14.3",
"mini-css-extract-plugin": "^0.4.5",
"node-sass": "^4.10.0",
"npm-run-all": "^4.1.5",
"optimize-css-assets-webpack-plugin": "^4.0.3",
"postcss-loader": "^2.1.6",
"postcss-normalize": "^7.0.1",
"prerender-loader": "^1.2.0",
"prettier": "^1.15.3",
"pretty-quick": "^1.8.0",
"react-hot-loader": "^4.5.3",
"rimraf": "^2.6.2",
"sass-loader": "^7.1.0",
"script-ext-html-webpack-plugin": "^2.1.3",
"standard-version": "^4.4.0",
"style-loader": "^0.21.0",
"stylelint": "^9.9.0",
"stylelint-config-recommended-scss": "^3.2.0",
"stylelint-scss": "^3.4.1",
"stylelint-webpack-plugin": "^0.10.5",
"suppress-chunks-webpack-plugin": "0.0.5",
"terser-webpack-plugin": "^1.1.0",
"tslint": "^5.11.0",
"tslint-loader": "^3.6.0",
"tslint-react": "^3.6.0",
"typescript": "^3.2.2",
"typescript-plugin-css-modules": "^1.0.4",
"webpack": "^4.27.1",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10",
"webpack-merge": "^4.1.4"
},
"dependencies": {
"@blueprintjs/core": "^3.10.0",
"@grammarly/focal": "^0.7.0",
"classcat": "^3.2.3",
"clipboard-copy": "^2.0.1",
"react": "^16.6.3",
"react-beautiful-dnd": "^9.0.2",
"react-dom": "^16.6.3",
"react-tiny-popover": "^3.4.2",
"rxjs": "6.2.2",
"rxjs-compat": "6.2.2"
}
}