This repository was archived by the owner on Mar 19, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.47 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.47 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "hashticle",
"version": "1.0.0",
"description": "",
"main": "index.js",
"author": "",
"scripts": {
"test": "npm-watch",
"build": "babel ./src/server/ -d ./dist",
"test:all": "npm run test:unit && npm run test:feature",
"test:unit": "jest",
"test:unit-watch": "jest --watch",
"test:feature": "./node_modules/cucumber/bin/cucumber.js ./src/features --compiler es6:babel-core/register --require ./src/features/support/testSetup.js --require ./src/features",
"start": "PUBLIC_DIR='../client/public' nodemon src/server/server.js --ignore dist --ignore node_modules --exec babel-node",
"build-web": "webpack",
"serve": "PUBLIC_DIR='./public' node dist/server.js"
},
"jest": {
"testRegex": ".*\\.test\\.js$"
},
"watch": {
"test:feature": {
"patterns": [
"**"
],
"extensions": [
"js",
"json",
"feature"
],
"ignore": [
"node_modules"
]
}
},
"license": "ISC",
"devDependencies": {
"babel-cli": "6.18.0",
"babel-core": "6.18.2",
"babel-eslint": "7.1.0",
"babel-jest": "17.0.2",
"babel-loader": "6.2.7",
"babel-preset-es2015": "6.18.0",
"babel-preset-node6": "11.0.0",
"babel-preset-react": "6.16.0",
"babel-preset-stage-0": "6.16.0",
"chai": "3.5.0",
"copy-webpack-plugin": "4.0.1",
"css-loader": "0.25.0",
"cucumber": "1.3.1",
"enzyme": "2.6.0",
"eslint": "3.9.1",
"eslint-loader": "1.6.1",
"eslint-plugin-react": "6.6.0",
"extract-text-webpack-plugin": "1.0.1",
"ignore-styles": "5.0.1",
"jest": "17.0.3",
"jsdom": "9.8.3",
"json-loader": "0.5.4",
"node-sass": "3.11.2",
"npm-watch": "0.1.6",
"react-addons-test-utils": "15.4.0",
"redux-thunk": "2.1.0",
"sass-loader": "4.0.2",
"style-loader": "0.13.1",
"webpack": "1.13.3"
},
"dependencies": {
"babel-polyfill": "6.16.0",
"body-parser": "1.15.2",
"express": "4.14.0",
"firebase": "3.6.1",
"lab-config": "github:lab-coop/lab-config",
"lab-di": "github:lab-coop/lab-di",
"lodash": "4.16.6",
"material-ui": "0.16.4",
"moment": "2.16.0",
"react": "15.4.0",
"react-dom": "15.4.0",
"react-layout-components": "3.0.4",
"react-redux": "4.4.5",
"react-router": "3.0.0",
"react-router-redux": "4.0.7",
"react-tap-event-plugin": "2.0.1",
"redux": "3.6.0",
"redux-auth-wrapper": "0.9.0",
"redux-form": "6.2.0",
"superagent": "3.3.0"
}
}