forked from mstijak/tdo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.38 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
{
"name": "tdo",
"version": "1.0.0",
"description": "Hackable TODO list",
"main": "index.js",
"scripts": {
"test": "mocha",
"start": "webpack-dev-server --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": {
"copy-webpack-plugin": "^4.0.1",
"cx-core": "^17.1.0",
"cx-react": "^16.12.0",
"cx-redux": "^16.12.0",
"marked": "^0.3.6",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0",
"uid": "0.0.2"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-preset-cx-env": "^16.12.6",
"crx-webpack-plugin": "^0.1.5",
"css-loader": "^0.26.1",
"extract-text-webpack-plugin": "^2.0.0-beta.4",
"html-webpack-plugin": "^2.24.1",
"node-sass": "^4.1.1",
"sass-loader": "^4.1.1",
"style-loader": "^0.13.1",
"webpack": "^2.1.0-beta.25",
"webpack-dev-server": "^2.1.0-beta.8",
"webpack-merge": "^2.0.0",
"zip-webpack-plugin": "^0.3.0"
}
}