This repository has been archived by the owner on Nov 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.94 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
{
"name": "react-styled-grid",
"version": "1.0.1",
"description": "Lightweight and very simple CSS Grid Layout library based on Styled Components for React, Gatsby and others.",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --mode development --open --hot",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "webpack --mode production",
"lint": "eslint src/",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --colors"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.js": "eslint"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"css-loader": "^2.1.1",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.6.0",
"node-sass": "^4.11.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-styled-grid-layout": "^1.0.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"styled-components": "^5.2.0",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-merge": "^4.2.1"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"eslint": "^5.16.0",
"eslint-plugin-react": "^7.12.4",
"husky": "^1.3.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.8.0",
"jest-css-modules": "^2.0.0",
"jest-environment-jsdom-fourteen": "^0.1.0",
"jest-prop-type-error": "^1.1.0",
"jest-resolve": "^24.8.0",
"jest-watch-typeahead": "^0.3.1",
"lint-staged": "^8.1.5",
"react-test-renderer": "^16.8.6",
"redux-devtools-extension": "^2.13.8",
"webpack-dev-server": "^3.3.1"
}
}