-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.11 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.11 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
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
{
"name": "lunch-n-learn-front-end-16",
"version": "0.1.0",
"description": "Single Page App",
"main": "webpack.config.js",
"scripts": {
"test": "mocha --compilers js:babel-core/register --require ./test/test_helper.js --recursive ./test",
"test:watch": "npm run test -- --watch",
"start": "node ./server.js",
"nodemon": "nodemon ./server.js",
"sass": "sass --watch ./public/styles",
"dev": "webpack-dev-server --content-base public --inline --hot --history-api-fallback --port 8088",
"build": "NODE_ENV=production webpack",
"postinstall": "webpack --config ./webpack.config.js --progress --colors"
},
"repository": {
"type": "git",
"url": "git+https://github.com/valmassoi/lunch-n-learn-front-end-16.git"
},
"author": "valmassoi",
"license": "MIT",
"bugs": {
"url": "https://github.com/valmassoi/lunch-n-learn-front-end-16/issues"
},
"homepage": "https://github.com/valmassoi/lunch-n-learn-front-end-16#readme",
"dependencies": {
"axios": "^0.11.1",
"express": "^4.14.0",
"history": "^1.17.0",
"lodash": "^4.13.1",
"react": "^15.4.1",
"react-bootstrap": "^0.30.5",
"react-dom": "^15.4.1",
"react-marked-markdown": "^1.4.2",
"react-router": "^3.0.0"
},
"engines": {
"node": "6.5.0"
},
"devDependencies": {
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-plugin-react-html-attrs": "^2.0.0",
"babel-plugin-transform-class-properties": "^6.3.13",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"chai": "^3.5.0",
"chai-jquery": "^2.0.0",
"css-loader": "^0.23.1",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.10.0",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.2.2",
"jquery": "^3.3.1",
"jsdom": "^8.1.0",
"mocha": "^2.4.5",
"node-sass": "^3.7.0",
"react-addons-test-utils": "^15.4.1",
"sass-loader": "^3.2.0",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.2"
}
}