-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.84 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.84 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "postal-creator",
"version": "1.0.0",
"description": "Creating pictures with text",
"main": "index.js",
"scripts": {
"start": "node dev-server.js",
"clean:build": "rimraf build",
"build:html": "node ./bin/buildHtml.js",
"prestart": "npm run clean:build",
"prebuild": "npm run clean:build",
"build": "cross-env NODE_ENV=production webpack --config ./config/webpack.config.production.js --progress",
"postbuild": "npm run build:html",
"build:serve": "http-server build/client -p 3003 --cors -o",
"lint": "eslint config src/js/** --ext .js",
"jscs": "jscs src/js/",
"typecheck": "flow",
"test": "mocha --compilers js:babel-core/register,css:./test/unit/cssNullCompiler.js --require ./test/unit/testHelper.js --recursive ./test/unit",
"test:watch": "npm run test -- --watch",
"tunnel": "lt --port 3000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rie-command/postal-creator-React.git"
},
"keywords": [
"ReactJS",
"Redux",
"image"
],
"author": "RIE command",
"license": "ISC",
"bugs": {
"url": "https://github.com/rie-command/postal-creator-React/issues"
},
"homepage": "https://github.com/rie-command/postal-creator-React#readme",
"devDependencies": {
"babel-core": "^6.23.1",
"babel-loader": "^6.2.5",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-flow-strip-types": "6.14.0",
"babel-plugin-transform-react-constant-elements": "6.9.1",
"babel-plugin-transform-react-remove-prop-types": "0.2.9",
"babel-plugin-transform-runtime": "6.15.0",
"babel-preset-es2015": "6.14.0",
"babel-preset-react": "6.11.1",
"babel-preset-stage-0": "6.5.0",
"cross-env": "2.0.1",
"css-loader": "^0.24.0",
"http-server": "0.9.0",
"less": "^2.7.2",
"less-loader": "^3.0.0",
"postcss": "^5.2.16",
"postcss-loader": "^0.11.1",
"react-transform-hmr": "^1.0.4",
"redbox-react": "1.3.0",
"redux-devtools": "3.3.1",
"redux-devtools-dock-monitor": "1.1.1",
"redux-devtools-log-monitor": "1.0.11",
"redux-immutable-state-invariant": "1.2.3",
"style-loader": "^0.13.1",
"webpack": "^2.2.1",
"webpack-dev-middleware": "^1.10.1",
"webpack-hot-middleware": "^2.17.1",
"webpack-merge": "0.14.1"
},
"dependencies": {
"autoprefixer": "6.4.1",
"babel-runtime": "6.11.6",
"canvas": "^1.6.4",
"express": "4.14.0",
"fabric": "^1.7.7",
"react": "^15.4.2",
"react-color": "^2.11.4",
"react-dom": "^15.4.2",
"react-fabricjs": "^0.1.6",
"react-hot-loader": "3.0.0-beta.2",
"react-redux": "^4.4.5",
"react-router": "2.7.0",
"react-router-redux": "4.0.5",
"redux": "3.5.2",
"redux-logger": "2.6.1",
"redux-promise": "0.5.3",
"redux-thunk": "^2.2.0"
}
}