This repository has been archived by the owner on Mar 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.46 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
{
"name": "kraken-react",
"version": "0.1.0",
"description": "kraken js + react example",
"author": "asilva",
"main": "index.js",
"scripts": {
"start": "npm run browserify && node index.js",
"browserify": "browserify -t reactify -t require-globify public/index.js -o public/bundle.js",
"webpack": "webpack -t reactify -t require-globify public/index.js -o public/bundle.js -w",
"test": "grunt test"
},
"dependencies": {
"browserify": "^10.2.4",
"engine-munger": "^0.2.0",
"express": "^4.3.0",
"fixed-data-table": "^0.4.1",
"json-loader": "^0.5.2",
"jsx-loader": "^0.13.2",
"kraken-devtools": "^1.0.0",
"kraken-js": "^1.0.1",
"localizr": "^0.1.6",
"node-jsx": "^0.13.3",
"node-libs-browser": "^0.5.2",
"react": "^0.13.3",
"react-engine": "^1.7.0",
"react-router": "^0.13.3",
"reactify": "^1.1.1",
"require-globify": "^1.2.1",
"stylus": "^0.51.1",
"webpack": "^1.10.1"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-browserify": "^2.1.4",
"grunt-config-dir": "^0.3.2",
"grunt-contrib-clean": "^0.5.0",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-stylus": "^0.13.2",
"grunt-copy-to": "0.0.10",
"grunt-localizr": "^0.1.4",
"grunt-mocha-cli": "^1.13.1",
"mocha": "^1.18.0",
"supertest": "^0.9.0"
},
"generator-kraken": {
"version": "1.1.2",
"template": false,
"css": "stylus",
"js": "browserify",
"task": "grunt"
}
}