-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
76 lines (76 loc) · 1.94 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
{
"name": "listery",
"version": "0.0.0",
"description": "List management app",
"main": "assets/js/index.js",
"scripts": {
"build": "./build.sh",
"start": "./start.sh",
"watch": "watch 'npm run start' assets",
"test": "jest",
"postinstall": "npm run build"
},
"jest": {
"testRegex": "assets/js/__tests__/.*\\.js$",
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"verbose": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/kgodey/listery.git"
},
"author": "Kriti Godey",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/kgodey/listery/issues"
},
"homepage": "https://github.com/kgodey/listery#readme",
"dependencies": {
"bootstrap": "^4.3.1",
"es6-promise": "^4.2.8",
"filenamify": "^4.1.0",
"isomorphic-fetch": "^2.2.1",
"js-cookie": "^2.2.0",
"lodash": "^4.17.14",
"normalizr": "^3.4.0",
"prop-types": "^15.7.2",
"query-string": "^6.8.2",
"react": "^16.8.6",
"react-bootstrap": "^1.0.0-beta.9",
"react-bootstrap-sweetalert": "^4.4.1",
"react-dnd": "^5.0.0",
"react-dnd-html5-backend": "^5.0.1",
"react-dom": "^16.8.6",
"react-icons": "^3.7.0",
"react-linkify": "^0.2.2",
"react-loading": "^2.0.3",
"react-onclickoutside": "^6.8.0",
"react-redux": "^5.1.1",
"react-router-dom": "^4.3.1",
"react-tag-input": "github:kgodey/react-tags#master",
"redux": "^4.0.4",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "^7.0.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"eslint": "^5.16.0",
"eslint-plugin-react": "^7.14.2",
"jest": "^24.8.0",
"jquery": "^3.4.1",
"react-test-renderer": "^16.8.6",
"watch": "^1.0.2",
"webpack": "^4.36.1",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.6"
}
}