-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.14 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
{
"name": "Oysuami",
"version": "1.0.0",
"description": "Oyasumi gallery project",
"main": "index.js",
"scripts": {
"start": "echo \"=> Starting\" && babel-node server/index.js",
"bundle": "echo \"=> Bundling\" && webpack --config webpack.prod.config.js",
"prebuild": "echo \"=> Cleaning\" && rimraf build/*",
"build": "echo \"=> Building\" && npm run bundle",
"pretest": "echo \"=> Linting\" && eslint ./src/**/*.js",
"test": "echo \"=> Testing\" && nyc babel-tape-runner src/**/*.test.js | tap-spec",
"posttest": "nyc report --reporter=lcov > coverage.lcov && codecov",
"watch": "watch 'clear && npm run test -s' src",
"dev": "babel-node devServer.js",
"update": "updtr"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MichaelQQ/Oyasumi.git"
},
"author": "MichaelQQ",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.9.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-polyfill": "^6.9.1",
"babel-tape-runner": "^2.0.1",
"codecov": "^2.2.0",
"deep-freeze": "0.0.1",
"eslint": "^4.2.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-config-recommended": "^1.1.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.1.0",
"react-addons-test-utils": "^15.0.2",
"rimraf": "^2.5.2",
"tap": "^10.7.0",
"tap-spec": "^4.1.1",
"tape": "^4.5.1",
"updtr": "^2.0.0",
"watch": "^1.0.2",
"webpack": "^3.2.0",
"webpack-dev-middleware": "^1.6.1"
},
"dependencies": {
"babel-cli": "^6.9.0",
"babel-plugin-transform-regenerator": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"body-parser": "^1.15.1",
"co": "^4.6.0",
"express": "^4.13.4",
"form-data": "^2.2.0",
"helmet": "^3.6.1",
"isomorphic-fetch": "^2.2.1",
"prop-types": "^15.5.10",
"react": "^15.0.2",
"react-dom": "^15.0.2",
"react-redux": "^5.0.5",
"redux": "^3.5.2",
"redux-saga": "^0.15.4",
"why-did-you-update": "0.0.8"
},
"engines": {
"node": "8.1.4"
}
}