-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.56 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
{
"name": "pas",
"version": "1.0.0",
"description": "Park and Sleep production",
"main": "index.js",
"scripts": {
"test": "babel-node node_modules/.bin/tape tests/components.jsx | faucet",
"compile": "webpack",
"start": "node ./server.js",
"dev": "nodemon ./server.js",
"precommit-msg": "echo 'Pre-commit checks..' && exit 0",
"lint": "eslint ./ --ignore-pattern .gitignore"
},
"pre-commit": [
"precommit-msg",
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/FACN1/PAS-MVP.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/FACN1/PAS-MVP/issues"
},
"homepage": "https://github.com/FACN1/PAS-MVP#readme",
"dependencies": {
"axios": "^0.16.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-env": "^1.5.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.2",
"express": "^4.15.3",
"mongodb": "^2.2.26",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-router-dom": "^4.1.1",
"style-loader": "^0.18.1",
"sass-loader": "^6.0.5",
"webpack": "^2.5.1",
"webpack-dev-middleware": "^1.10.2"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"enzyme": "^2.8.2",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"faucet": "0.0.1",
"pre-commit": "^1.2.2",
"react-hot-loader": "^1.3.1",
"tape": "^4.6.3"
}
}