-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.61 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
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "brain.dmp-frontend",
"version": "0.0.1",
"description": "node.js/react frontend for the brain.dmp platform",
"main": "main.js",
"directories": {
"doc": "docs",
"test": "test"
},
"scripts": {
"clean-install": "rm -rf node_modules && npm install",
"start": "concurrently --kill-others \"npm run start:devserver\" \"node ./src/server.js\" \"node ./src/server-backend.js\"",
"start:devserver": "webpack-dev-server --hot --inline",
"test": "mocha --recursive --compilers js:babel-core/register --require ./test/setup.js",
"test:watch": "npm test -- --watch",
"dist": "webpack -p --config webpack.prod.config.js && npm run cp:serverstuff",
"dist:dev": "webpack -d --devtool source-map ./src/main.js && npm run cp:serverstuff",
"eslint": "./node_modules/.bin/eslint src/",
"cp:serverstuff": "cp ./src/server.js ./dist/server.js && cp ./src/server-backend.js ./dist/server-backend.js && cp ./src/server-mockdata.js ./dist/server-mockdata.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Gurkenschreck/brain.dmp-frontend.git"
},
"keywords": [
"node",
"react",
"brain.dmp",
"frontend"
],
"author": "Mario Giugno",
"license": "ISC",
"bugs": {
"url": "https://github.com/Gurkenschreck/brain.dmp-frontend/issues"
},
"homepage": "https://github.com/Gurkenschreck/brain.dmp-frontend#readme",
"dependencies": {
"axios": "^0.15.3",
"express": "^4.14.0",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-redux": "^5.0.1",
"react-router": "^3.0.0",
"redux": "^3.6.0",
"request": "^2.79.0"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-es2017": "^6.16.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"concurrently": "^3.1.0",
"css-loader": "^0.26.1",
"deep-freeze-node": "^1.1.2",
"enzyme": "^2.7.0",
"eslint": "^3.12.2",
"eslint-plugin-react": "^6.8.0",
"expect": "^1.20.2",
"expect-jsx": "^3.0.0",
"ignore-styles": "^5.0.1",
"jsdom": "^9.9.1",
"mocha": "^3.2.0",
"nock": "^9.0.2",
"react": "^15.4.1",
"react-addons-test-utils": "^15.4.1",
"react-dom": "^15.4.1",
"react-hot-loader": "^1.3.1",
"redux-devtools": "^3.3.1",
"redux-devtools-extension": "^1.0.0",
"redux-mock-store": "^1.2.1",
"style-loader": "^0.13.1",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2",
"xmlhttprequest": "^1.8.0"
}
}