-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.53 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
{
"name": "quizzer",
"version": "0.0.1",
"description": "Create and play online quizzes",
"scripts": {
"start": "node server.js",
"lint": "eslint src",
"build": "rimraf dist && cross-env NODE_ENV=production webpack --config ./webpack.production.config.js --progress --profile --colors",
"jscs": "jscs src",
"test": "jest --verbose"
},
"repository": {
"type": "git",
"url": "https://github.com/monsieurleberre/quizzer-app-web.git"
},
"keywords": [
"react",
"firebase",
"webpack",
"quizz"
],
"author": "Monsieur Le Berre",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/monsieurleberre/quizzer-app-web/issues"
},
"homepage": "https://github.com/monsieurleberre/quizzer-app-web#readme",
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/react-addons-test-utils",
"<rootDir>/node_modules/fbjs",
"<rootDir>/node_modules/alt",
"<rootDir>/src/alt",
"<rootDir>/node_modules/alt-utils",
"<rootDir>/node_modules/react-router",
"<rootDir>/node_modules/flexboxgrid",
"<rootDir>/node_modules/react-flexbox-grid",
"<rootDir>/node_modules/material-ui",
"<rootDir>/node_modules/lodash",
"<rootDir>/node_modules/trim"
]
},
"devDependencies": {
"alt-utils": "^1.0.0",
"babel-core": "^6.9.1",
"babel-eslint": "^6.0.4",
"babel-jest": "^13.2.2",
"babel-loader": "^6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"cross-env": "^1.0.8",
"css-loader": "^0.23.1",
"eslint-plugin-react": "^5.1.1",
"html-webpack-plugin": "^2.19.0",
"jest-cli": "^13.2.3",
"react-addons-test-utils": "^15.1.0",
"react-hot-loader": "^1.3.0",
"rimraf": "^2.5.2",
"stats-webpack-plugin": "^0.4.0",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"alt": "^0.18.4",
"babel-polyfill": "^6.9.1",
"classnames": "^2.2.5",
"firebase": "^3.0.3",
"flexboxgrid": "^6.3.0",
"lodash": "^4.13.1",
"material-ui": "^0.15.0",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-flexbox-grid": "^0.9.6",
"react-router": "^2.4.1",
"react-tap-event-plugin": "^1.0.0",
"trim": "0.0.1"
}
}