-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "lighthouse",
"version": "0.0.0",
"description": "eventer application",
"main": "index.js",
"scripts": {
"start": "better-npm-run start",
"test": "jest --colors",
"test:watch": "jest --colors --watch",
"build": "better-npm-run build"
},
"betterScripts": {
"start": {
"command": "node server",
"env": {
"NODE_ENV": "development"
}
},
"build": {
"command": "rimraf ./dist && webpack --progress --profile --colors",
"env": {
"NODE_ENV": "production"
}
}
},
"jest": {
"notify": "true",
"moduleDirectories": [
"node_modules",
"app"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/hrls/lighthouse.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hrls/lighthouse/issues"
},
"homepage": "https://github.com/hrls/lighthouse#readme",
"devDependencies": {
"autoprefixer": "^6.5.1",
"babel-core": "^6.13.2",
"babel-eslint": "^6.1.2",
"babel-jest": "^16.0.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"babel-tape-runner": "^2.0.1",
"better-npm-run": "0.0.10",
"connect-history-api-fallback": "^1.3.0",
"css-loader": "^0.25.0",
"css-mqpacker": "^5.0.1",
"enzyme": "^2.4.1",
"eslint": "^3.3.0",
"eslint-config-airbnb": "^10.0.1",
"eslint-plugin-import": "^1.13.0",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-react": "^6.1.0",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.22.0",
"image-webpack-loader": "^3.0.0",
"jest": "^16.0.2",
"jsdom": "^9.4.2",
"postcss-import": "^8.1.2",
"postcss-loader": "^1.0.0",
"postcss-math": "0.0.5",
"precss": "^1.4.0",
"react-addons-test-utils": "^15.3.0",
"react-hot-loader": "^3.0.0-beta.5",
"redux-mock-store": "^1.2.1",
"rimraf": "^2.5.4",
"sinon": "^1.17.5",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-dev-middleware": "^1.6.1",
"webpack-dev-server": "^1.14.1",
"webpack-hot-middleware": "^2.12.2"
},
"dependencies": {
"normalize.css": "^5.0.0",
"react": "^15.3.0",
"react-dom": "^15.3.0",
"react-redux": "^4.4.5",
"react-router": "^2.6.1",
"redux": "^3.6.0",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.1.0"
}
}