-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.91 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.91 KB
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
{
"name": "site",
"version": "2.0.0",
"description": "A framework for running multiple dev trackers",
"main": "index.html",
"scripts": {
"stage": "node scripts/build.js --stage && npx serve stage",
"build": "webpack --mode=production --progress",
"deploy": "node scripts/build.js",
"dev": "concurrently \"webpack-dev-server --open\" \"nodemon --watch web-assets --watch games -e scss scripts/buildstyles.js\"",
"lint:components": "eslint -c kokarn/react app/**/*",
"lint:scripts": "eslint -c kokarn/nodejs scripts/*.js",
"pretest": "eslint *.js"
},
"author": "Oskar Risberg <kokarn@gmail.com>",
"repository": {
"type": "git",
"url": "https://kokarn@github.com/post-tracker/site.git"
},
"bugs": {
"url": "https://github.com/post-tracker/site/issues"
},
"license": "MIT",
"dependencies": {
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@redux-devtools/core": "^3.13.1",
"aws-sdk": "^2.562.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.5",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"concurrently": "^7.0.0",
"cssnano": "^3.10.0",
"debounce": "^1.2.0",
"dotenv": "^16.0.0",
"eslint": "^3.5.0",
"eslint-config-kokarn": "^2.0.0",
"junk": "^3.1.0",
"minimist": "^1.2.0",
"mustache": "^2.3.2",
"node-sass": "^7.0.1",
"nodemon": "^2.0.15",
"postcss": "^6.0.23",
"prop-types": "^15.7.2",
"react": "^18.2.0",
"react-cookie": "^1.0.5",
"react-dom": "^18.2.0",
"react-redux": "^8.0.2",
"react-timeago": "^7.1.0",
"react-toggle-dark-mode": "^1.1.0",
"recursive-readdir": "^2.2.2",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"rss": "^1.2.2",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0"
},
"eslintConfig": {
"extends": "kokarn"
},
"engines": {
"node": "^18.0.0"
}
}