-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 876 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 876 Bytes
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
{
"name": "skillicious",
"version": "0.0.1",
"description": "An example React.js job recruiting app",
"scripts": {
"build": "browserify index.js -t babelify --outfile static/index.js",
"watch": "watchify -t /usr/local/lib/node_modules/reactify test.js -o static/test.js --debug --verbose & watchify -t /usr/local/lib/node_modules/reactify index.js -o static/index.js --debug --verbose",
"test": "mocha --recursive"
},
"repository": {
"type": "git",
"url": "https://github.com/bluecollarcoder/skillicious-client"
},
"dependencies": {
"flux": "^2.0.3",
"jquery": "^2.1.4",
"jquery-ui": "^1.10.5",
"react": "^0.13.3",
"react-router": "^0.13.3",
"rsvp": "^3.0.21",
"underscore": "^1.8.3"
},
"devDependencies": {
"babelify": "^6.3.0",
"chai": "^3.2.0",
"jsdom": "^3.1.2",
"sinon": "^1.16.1"
}
}