-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.2 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
{
"name": "gridnik",
"version": "0.3.0",
"main": "dist/main.js",
"repository": "https://github.com/mattlean/gridnik.git",
"author": "Matthew Lean <matt@mattlean.com>",
"private": true,
"scripts": {
"build": "webpack --mode development",
"dev": "DEV=true yarn watch",
"lint": "eslint --cache \"src/**/*.{js,jsx}\"",
"test": "jest",
"watch": "nodemon -w src -e js,jsx,css -w webpack.config.js -x yarn build"
},
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.13.1",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.2",
"jest": "^26.0.1",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"@babel/core": "^7.9.6",
"babel-core": "^6.26.3",
"babel-loader": "^8.1.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"css-loader": "^3.5.3",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"style-loader": "^1.2.1",
"yarn": "^1.22.4"
}
}