-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
69 lines (69 loc) · 2.01 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
66
67
68
69
{
"name": "looking-for-front-end",
"version": "1.0.0",
"description": "Front end for Lookingfor app",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server --content-base public/ --progress --colors --history-api-fallback",
"start": "nodemon server.js",
"test": "mocha test/setup.js test/**/*-test.js",
"build": "webpack",
"postinstall": "webpack -p --config webpack.production.config.js"
},
"repository": {
"type": "git",
"url": "https://github.com/LookingForMe/lookingForFrontEnd.git"
},
"author": "Nate Venn, Kimiko Kano, Brian Rippeto, Chelsea Johnson",
"license": "MIT",
"bugs": {
"url": "https://github.com/LookingForMe/lookingForFrontEnd/issues"
},
"homepage": "https://github.com/LookingForMe/lookingForFrontEnd",
"devDependencies": {
"babel": "^6.3.13",
"babel-core": "^6.3.15",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-register": "^6.3.13",
"chai": "^3.5.0",
"chai-enzyme": "^0.5.0",
"css-loader": "^0.15.6",
"enzyme": "^2.3.0",
"eslint": "1.0.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.2.2",
"eslint-plugin-react": "^5.1.1",
"jsdom": "^8.0.1",
"mocha": "^2.4.5",
"node-libs-browser": "^0.5.2",
"nodemon": "^1.9.1",
"react-addons-test-utils": "^0.14.7",
"sinon": "^1.17.4",
"webpack-dev-server": "^1.14.0"
},
"dependencies": {
"axios": "^0.14.0",
"css-loader": "^0.15.5",
"d3": "3.5.17",
"express": "^4.13.3",
"jquery": "^2.2.4",
"lodash": "^4.16.6",
"pryjs": "^1.0.2",
"react": "^0.14.3",
"react-addons": "^0.9.1-deprecated",
"react-bootstrap": "^0.29.4",
"react-d3": "^0.4.0",
"react-dom": "^0.14.3",
"react-router": "^2.4.1",
"style-loader": "^0.12.4",
"webpack": "^1.12.9"
},
"externals": {
"cheerio": "window",
"react/lib/ExecutionEnvironment": true,
"react/lib/ReactContext": true
}
}