-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
executable file
·98 lines (98 loc) · 3.23 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "nulis",
"version": "0.0.1",
"description": "Tree editor for writers.",
"main": "./server/index.js",
"scripts": {
"startserver": "cd ./server && BABEL_DISABLE_CACHE=1 NODE_ENV=development nodemon index.js",
"startclient": "cd ./client && NODE_ENV=development node ../node_modules/webpack-dev-server/bin/webpack-dev-server.js",
"buildserver": "NODE_ENV=production cd ./server && webpack --config ./webpack.config.server.js --progress",
"buildclient": "NODE_ENV=production cd ./client && webpack -p --config ./webpack.config.js --progress",
"build": "NODE_ENV=production cd ./client && webpack -p --config ./webpack.config.js --progress && cd ../server && webpack --config ./webpack.config.server.js --progress",
"serve": "cd ./server && NODE_ENV=production forever ./index.js > log.txt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/raymestalez/nulis.git"
},
"author": "Ray Alez",
"license": "AGPL",
"bugs": {
"url": "https://github.com/raymestalez/nulis/issues"
},
"homepage": "https://github.com/raymestalez/nulis#readme",
"devDependencies": {
"babel-core": "^6.2.1",
"babel-loader": "^6.2.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-webpack-loaders": "^0.9.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"babel-preset-stage-1": "^6.1.18",
"css-loader": "^0.28.0",
"json-loader": "^0.5.4",
"raw-loader": "^0.5.1",
"sass-loader": "^6.0.3",
"webpack": "^2.4.1",
"webpack-dev-middleware": "^1.6.1",
"webpack-dev-server": "^2.4.3",
"webpack-externals-plugin": "^1.0.0",
"webpack-hot-middleware": "^2.10.0",
"webpack-manifest-plugin": "^1.0.1"
},
"dependencies": {
"axios": "^0.15.3",
"babel-register": "^6.24.1",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.15.2",
"cors": "^2.8.1",
"cuid": "^1.3.8",
"ejs": "^2.5.6",
"express": "^4.15.2",
"file-loader": "^0.11.1",
"forever": "^0.15.3",
"gsap": "^1.19.1",
"js-cookie": "^2.1.4",
"jwt-simple": "^0.5.0",
"lodash": "^3.10.1",
"memory-cache": "^0.1.6",
"moment": "^2.18.1",
"mongoose": "^4.9.6",
"morgan": "^1.7.0",
"mousetrap": "^1.6.0",
"node-sass": "^4.5.2",
"nodemon": "^1.11.0",
"passport": "^0.3.2",
"passport-jwt": "^2.2.1",
"passport-local": "^1.0.0",
"react": "^0.14.3",
"react-bootstrap": "^0.31.0",
"react-dnd": "^2.3.0",
"react-dnd-html5-backend": "^2.3.0",
"react-dom": "^0.14.3",
"react-dragula": "^1.1.17",
"react-file-input": "^0.2.5",
"react-file-reader-input": "^1.1.0",
"react-ga": "^2.2.0",
"react-meta-tags": "^0.1.3",
"react-redux": "^4.0.0",
"react-router": "^2.0.1",
"react-simplemde-editor": "^3.6.4",
"react-stripe-checkout": "^2.2.5",
"react-textarea-autosize": "^4.0.5",
"redux": "^3.0.4",
"redux-form": "^6.6.3",
"redux-thunk": "^2.1.0",
"redux-undo": "^0.6.1",
"remarkable": "^1.7.1",
"remove-markdown": "^0.1.0",
"save-as": "^0.1.8",
"slug": "^0.9.1",
"snoowrap": "^1.14.0",
"stripe": "^4.18.0",
"style-loader": "^0.16.1",
"url-loader": "^0.5.8",
"validator": "^7.0.0"
}
}