-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1 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
{
"name": "advent-calendar",
"version": "1.0.0",
"description": "A react calendar",
"main": "main.js",
"scripts": {
"build": "browserify -e index.js -s ReactMiniRouter > dist/react-mini-router.js",
"dist": "uglifyjs dist/react-mini-router.js > dist/react-mini-router.min.js",
"start": "node main.js"
},
"author": "Katja Durrani",
"keywords": [
"react",
"calendar"
],
"peerDependencies": {
"react": ">=0.12.0"
},
"dependencies": {
"body-parser": "^1.5.2",
"express": "^4.7.2",
"fastclick": "^1.0.3",
"path-to-regexp": "^1.0.1",
"plates": "^0.4.9",
"react": "^0.12.0",
"superagent": "^0.21.0",
"urllite": "^0.5.0"
},
"devDependencies": {
"browserify": "^5.9.1",
"reactify": "^0.16.0",
"uglify-js": "^2.4.15",
"grunt": "^0.4.5",
"grunt-browserify": "^2.1.4",
"grunt-contrib-clean": "^0.6.0",
"grunt-env": "^0.4.1",
"grunt-nodemon": "^0.3.0",
"grunt-react": "^0.10.0",
"load-grunt-tasks": "^0.6.0"
}
}