-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.03 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.03 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
{
"name": "kokoru",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"provision": "docker build -t kokoru/web-app .; docker run -p 3000:3000 -d kokoru/web-app",
"build": "webpack",
"build:watch": "webpack --watch",
"start": "node index.js",
"start:watch": "nodemon index.js webpack --watch",
"test": "karma start",
"test:ci": "yarn test -- -- --single-run",
"setup": "npm install",
"setup:test": "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x16 export DISPLAY=:99.0 export JASMINE_BROWSER=chrome"
},
"author": "Jonathan",
"license": "ISC",
"devDependencies": {
"babel": "^5.8.38",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.5.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.4",
"enzyme": "^2.8.2",
"extract-text-webpack-plugin": "^2.1.2",
"jasmine-core": "^2.6.2",
"karma": "^1.7.0",
"karma-chrome-launcher": "^2.1.1",
"karma-jasmine": "^1.1.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.3",
"react": "^15.5.4",
"react-addons-perf": "^15.4.2",
"react-addons-test-utils": "^15.5.1",
"react-dom": "^15.5.4",
"react-redux": "^5.0.5",
"react-test-renderer": "^15.5.4",
"redux": "^3.6.0",
"style-loader": "^0.18.2",
"webpack": "^3.0.0"
},
"dependencies": {
"autoprefixer": "^7.1.1",
"material-ui": "^1.0.0-beta.21",
"compression-webpack-plugin": "^0.4.0",
"cssnano": "^3.10.0",
"ejs": "^2.5.7",
"express": "^4.13.3",
"express-graphql": "^0.4.5",
"fs": "0.0.2",
"graphql": "^0.4.14",
"jasmine-node": "^1.14.5",
"mongoose": "^4.3.5",
"net": "^1.0.2",
"nodemon": "^1.12.1",
"postcss-calc": "^6.0.0",
"postcss-loader": "^2.0.6",
"qrious": "^4.0.2"
}
}