-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.56 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
{
"name": "notepy",
"version": "0.0.0",
"scripts": {
"build": "rm app/static/dist -rf && webpack --mode=production",
"build:dev": "rm app/static/dist -rf && webpack --mode=development",
"clean": "rm app/static/dist -rf",
"lint": "eslint app/js",
"start": "webpack serve --mode=development --hot",
"watch": "webpack --watch --mode=production --progress",
"watch:dev": "webpack --watch --mode=development --progress"
},
"repository": {
"type": "git",
"url": "git@github.com:simonbru/notepy.git"
},
"author": "Simon Brulhart",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/plugin-transform-class-properties": "^7.25.9",
"@babel/plugin-transform-object-rest-spread": "^7.25.9",
"@babel/plugin-transform-strict-mode": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"babel-loader": "^9.2.1",
"core-js": "^3.39.0",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"eslint": "^8.57.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"mini-css-extract-plugin": "^2.9.2",
"sass": "^1.80.7",
"sass-loader": "^16.0.3",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0",
"webpack-manifest-plugin": "^5.0.0"
},
"dependencies": {
"bootstrap-sass": "^3.4.3",
"jquery": "^3.7.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sortablejs": "^1.15.3",
"todotxt.js": "simonbru/todotxt.js#notepy_raw_extract"
}
}