-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
65 lines (65 loc) · 1.73 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
{
"name": "tdo",
"version": "1.0.0",
"description": "Hackable TODO list",
"main": "index.js",
"scripts": {
"test": "exit 0",
"start": "webpack serve --config config/webpack.dev.js --open",
"build": "webpack --config config/webpack.prod.js",
"build:extension": "webpack --config config/webpack.extension.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mstijak/tdo.git"
},
"keywords": [
"todo",
"list",
"cx"
],
"author": "Marko Stijak",
"license": "MIT",
"bugs": {
"url": "https://github.com/mstijak/tdo/issues"
},
"homepage": "https://github.com/mstijak/tdo#readme",
"dependencies": {
"@babel/polyfill": "^7.2.5",
"copy-webpack-plugin": "^5.0.2",
"core-js": "^3.0.0",
"cx": "^19.10.6",
"cx-react": "^17.10.0",
"firebase": "^8.3.0",
"marked": "^0.6.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"uid": "0.0.2",
"upper-case": "^2.0.2"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/preset-typescript": "^7.3.3",
"@firebase/app-types": "^0.3.7",
"@webpack-cli/serve": "^1.3.0",
"babel-loader": "^8.0.5",
"babel-preset-cx-env": "19",
"crx-webpack-plugin": "^0.1.1",
"css-loader": "^2.1.1",
"extract-text-webpack-plugin": "^3.0.2",
"html-webpack-plugin": "^5.3.2",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^5.0.0",
"prettier": "^1.16.4",
"sass-loader": "11.0.1",
"style-loader": "^2.0.0",
"url-loader": "^1.1.2",
"webpack": "^5.56.1",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.2.1",
"webpack-merge": "^5.8.0",
"workbox-webpack-plugin": "^4.3.1",
"zip-webpack-plugin": "^3.0.0"
}
}