forked from papistan/FrontEndTrivia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.76 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
{
"name": "FrontEndTrivia",
"version": "1.0.0",
"description": "Built on React, Redux, Webpack - Flip through cards to test your front end knowledge",
"main": "index.js",
"repository": "git@github.com:papistan/FrontEndTrivia.gitpistan/FrontEndTrivia.git",
"scripts": {
"dev": "node ./node_modules/webpack-dev-server/bin/webpack-dev-server.js",
"precommit": "lint-staged",
"postinstall": "webpack -p",
"start": "node server.js",
"test": "mocha --compilers js:babel-core/register --require ./test/test_helper.js --recursive ./test",
"test:watch": "npm run test -- --watch"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"engines": {
"node": "8.4.0"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.2.1",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"chai": "^3.5.0",
"chai-jquery": "^2.0.0",
"eslint": "^4.8.0",
"eslint-config-airbnb": "^16.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"husky": "0.14.3",
"jquery": "^2.2.1",
"jsdom": "^8.1.0",
"lint-staged": "4.2.3",
"mocha": "^2.4.5",
"prettier": "1.7.4",
"react-addons-test-utils": "^0.14.7",
"webpack-dev-server": "^1.14.0"
},
"dependencies": {
"babel-core": "^6.2.1",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"babel-preset-stage-1": "^6.1.18",
"lodash": "^3.10.1",
"react": "^0.14.3",
"react-dom": "^0.14.3",
"react-flipcard": "^0.2.1",
"react-redux": "4.3.0",
"react-router": "^2.0.1",
"redux": "^3.0.4",
"webpack": "^1.12.9"
}
}