-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 1.71 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
{
"name": "primer",
"version": "0.0.1",
"description": "A ReactJS primer rpo with focus on idiomatic principles and the component life cycle",
"main": "index.js",
"engines": {
"node": ">= 11.3"
},
"scripts": {
"pretest-web": "./node_modules/gulp/bin/gulp.js transpile",
"pretest-headless": "./node_modules/gulp/bin/gulp.js transpile",
"test-web": "zuul --local 8020 -- test/tape/**/*.js",
"test-headless": "zuul --phantom -- test/tape/**/*.js",
"prebuild": "npm install",
"build": "./node_modules/gulp/bin/gulp.js build"
},
"repository": {
"type": "git",
"url": "https://github.com/TucsonReactJS/primer.git"
},
"keywords": [
"reactjs",
"intro",
"seed"
],
"author": "Charles King",
"license": "MIT",
"bugs": {
"url": "https://github.com/TucsonReactJS/primer/issues"
},
"homepage": "https://github.com/TucsonReactJS/primer",
"dependencies": {
"debug": "^2.2.0",
"fluxible": "^0.4.9",
"fluxible-router": "^0.1.4",
"gulp-nodemon": "^2.0.3",
"koa": "^0.20.0",
"koa-favicon": "^1.2.0",
"koa-mount": "^1.3.0",
"koa-router": "^4.3.2",
"koa-static": "^1.4.9",
"node-jsx": "^0.13.3",
"react": "^0.13.2",
"serialize-javascript": "^1.0.0",
"snabbt.js": "^0.5.1",
"superagent": "^1.2.0",
"thunkify-wrap": "^1.0.4"
},
"devDependencies": {
"babel": "^5.2.16",
"babel-core": "^5.1.11",
"babel-loader": "^5.0.0",
"browser-sync": "^2.6.4",
"del": "^1.1.1",
"gulp": "^3.8.11",
"gulp-babel": "^5.1.0",
"gulp-load-plugins": "^0.10.0",
"gulp-webpack": "^1.4.0",
"jsdom": "^5.3.0",
"phantomjs": "^1.9.16",
"tape": "^4.0.0",
"webpack": "^1.8.9",
"zuul": "^3.0.0"
}
}