forked from codaxy/tdo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.79 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
66
67
{
"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",
"start:dev": "webpack serve ",
"build": "webpack serve --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": "^8.0.0",
"cx": "^18.12.7",
"cx-react": "^17.10.0",
"cx-redux": "^18.5.2",
"firebase": "^8.3.0",
"marked": "^0.5.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-router": "^5.2.0",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"uid": "0.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",
"@types/react": "^16.0.5",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.2.2",
"babel-preset-cx-env": "^21.3.0",
"babel-preset-env": "1.6.1",
"crx-webpack-plugin": "^0.1.6",
"css-loader": "^5.1.2",
"html-webpack-plugin": "^5.3.1",
"mini-css-extract-plugin": "^1.3.9",
"node-sass": "^5.0.0",
"prettier": "^1.15.2",
"sass-loader": "11.0.1",
"style-loader": "^2.0.0",
"webpack": "^5.25.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^4.1.4",
"zip-webpack-plugin": "^4.0.1"
}
}