-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.3 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
{
"name": "barreled",
"private": true,
"dependencies": {
"@babel/core": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"@babel/preset-react": "^7.12.13",
"babel-loader": "^8.2.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"webpack": "^4.46.0",
"webpack-cli": "^4.5.0"
},
"description": "Barreled, a clone of tumblr (barrel finishing is to metals as tumble finishing is to rocks)",
"version": "1.0.0",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"engines": {
"node": "10.13.0",
"npm": "6.4.1"
},
"scripts": {
"build:dev": "webpack --mode=development",
"watch:dev": "webpack --mode=development --watch",
"postinstall": "webpack",
"lint": "eslint frontend"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JamesKoenig/barreled.git"
},
"keywords": [],
"author": "James Koenig",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/JamesKoenig/barreled/issues"
},
"homepage": "https://github.com/JamesKoenig/barreled#readme",
"devDependencies": {
"eslint": "^7.23.0",
"eslint-plugin-react": "^7.28.0",
"redux-logger": "^3.0.6"
}
}