-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.61 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
{
"name": "deploy-to-prismic",
"version": "1.0.0",
"description": "Deploy a new project to Prismic with ease",
"main": "index.js",
"scripts": {
"dev": "nodemon --watch server.js --watch api --exec babel-node --presets env server.js",
"build": "next build",
"start": "NODE_ENV=production babel-node --presets env server.js",
"flow": "flow",
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "cd contento-remote && $npm_execpath install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidknezic/deploy-to-prismic.git"
},
"keywords": [
"prismic",
"deploy",
"cms"
],
"author": "David Knezić <davidknezic@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/davidknezic/deploy-to-prismic/issues"
},
"homepage": "https://github.com/davidknezic/deploy-to-prismic#readme",
"dependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-0": "^6.24.1",
"bluebird": "^3.5.0",
"body-parser": "^1.17.2",
"classnames": "^2.2.5",
"cookie-parser": "^1.4.3",
"express": "^4.15.3",
"flow-bin": "^0.48.0",
"next": "beta",
"next-redux-wrapper": "^1.1.2",
"nodemon": "^1.11.0",
"query-string": "^4.3.4",
"ramda": "^0.24.1",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-ga": "^2.2.0",
"react-redux": "^5.0.5",
"redux": "^3.7.0",
"redux-actions": "^2.0.3",
"redux-devtools-extension": "^2.13.2",
"redux-thunk": "^2.2.0",
"request": "^2.81.0"
}
}