This repository has been archived by the owner on Sep 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
83 lines (83 loc) · 2.31 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
{
"name": "narrative-next",
"version": "0.1.0",
"private": true,
"homepage": "https://DeepBlueCLtd.github.io/narr-next",
"dependencies": {
"ajv": "^6.4.0",
"aphrodite": "^2.1.0",
"babel-jest": "^22.4.3",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"bootstrap": "4.0.0",
"font-awesome": "^4.7.0",
"fs": "0.0.1-security",
"fuse-js-latest": "3.1.0",
"hotkeys-js": "3.1.1",
"html2canvas": "^1.0.0-alpha.10",
"jquery": "^3.3.1",
"jspdf": "^1.3.5",
"lodash": "4.17.5",
"lodash.cond": "^4.5.2",
"moment": "^2.21.0",
"npm": "^5.8.0",
"pouchdb": "^6.4.3",
"prop-types": "15.6.1",
"rc-queue-anim": "^1.4.1",
"rc-tween-one": "1.7.3",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-file-reader": "^1.1.4",
"react-fontawesome": "1.6.1",
"react-hot-keys": "1.0.11",
"react-redux": "^5.0.7",
"react-scripts": "1.1.1",
"react-test-renderer": "^16.2.0",
"react-virtualized": "^9.18.5",
"reactstrap": "^5.0.0-beta.3",
"recompose": "0.26.0",
"redux": "^3.7.2",
"redux-actions": "^2.3.0",
"redux-pouchdb-plus": "^0.10.0",
"redux-thunk": "2.2.0",
"reselect": "3.0.1",
"simple-react-validator": "0.0.6",
"styled-components": "3.2.3",
"lorem-ipsum": "1.0.4"
},
"devDependencies": {
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.1.1",
"eslint": "4.19.1",
"eslint-config-airbnb": "16.1.0",
"eslint-config-prettier": "2.9.0",
"eslint-plugin-import": "2.9.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "7.7.0",
"eslint-plugin-sort-imports-es6-autofix": "0.3.0",
"gh-pages": "1.1.0",
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"prettier": "1.11.1"
},
"lint-staged": {
"*.{js,.jsx}": [
"prettier --write",
"eslint --fix",
"jest --bail",
"git add"
]
},
"scripts": {
"coverage": "test -- --coverage",
"precommit": "lint-staged",
"format": "prettier --write src/**/*.{js,jsx,css}",
"linter": "eslint --fix src/**/*.{js,jsx}",
"lint": " npm run format && npm run linter",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"deploy": "gh-pages -d build"
}
}