-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.73 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
{
"name": "artus",
"version": "1.0.0",
"description": "A simple web-based application to save articles and read them later",
"main": "index.js",
"scripts": {
"start": "npm run build && node index.js",
"build": "gulp build",
"watch": "gulp watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"read",
"article",
"isomorphic"
],
"author": "Laurent Dezitter <laurent.dezitter@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dezitter/artus.git"
},
"dependencies": {
"alt": "^0.17.3",
"babel": "^5.8.23",
"babelify": "^6.3.0",
"body-parser": "^1.14.0",
"browserify": "^11.2.0",
"bulkify": "^1.1.1",
"contra": "^1.9.1",
"debug": "^2.2.0",
"director": "^1.2.8",
"dotenv": "^1.2.0",
"es6-promise": "^3.0.2",
"express": "^4.13.3",
"http-proxy": "^1.11.2",
"lodash": "^3.10.1",
"nedb": "^1.2.1",
"react": "^0.13.3",
"superagent": "^1.4.0",
"vinyl-source-stream": "^1.1.0"
},
"devDependencies": {
"gulp": "^3.9.0",
"gulp-livereload": "^3.8.1",
"gulp-nodemon": "^2.0.4",
"gulp-sass": "^2.0.4",
"gulp-util": "^3.0.6",
"watchify": "^3.4.0"
},
"babel": {
"optional": [
"es7.decorators",
"es7.classProperties"
]
},
"browser": {
"./app/router/index.js": "./app/router/client.js",
"./app/router/handlers/index.js": "./app/router/handlers/client.js",
"./app/router/renderer/index.js": "./app/router/renderer/client.js",
"./app/api/url-builder/index.js": "./app/api/url-builder/client.js"
},
"browserify": {
"extensions": [
".jsx"
],
"transform": [
"babelify",
"bulkify"
]
}
}