forked from 5monkeys/djedi-cms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.83 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.83 KB
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
{
"name": "djedi-react",
"version": "5.5.0",
"license": "BSD-3-Clause",
"author": "Simon Lydell",
"repository": "5monkeys/djedi-cms",
"description": "Djedi CMS React client",
"main": "dist/index.js",
"files": [
"dist",
"babel-plugin.js"
],
"keywords": [
"cms",
"django",
"djedi",
"djedi-cms",
"react"
],
"scripts": {
"start": "next",
"watch": "jest --watchAll",
"eslint": "eslint .",
"eslint:fix": "eslint . --fix",
"prettier": "prettier --write \"*.md\"",
"doctoc": "doctoc --maxlevel 3 README.md",
"jest": "jest",
"coverage": "jest --coverage",
"build": "babel --env-name test --delete-dir-on-start src --out-dir dist",
"test": "npm run eslint && npm run coverage && npm run build"
},
"dependencies": {
"dedent-js": "^1.0.1",
"isomorphic-dompurify": "^2.0.0",
"prop-types": "^15.5.7"
},
"peerDependencies": {
"react": ">=16.6.0"
},
"devDependencies": {
"@babel/cli": "7.4.4",
"@babel/core": "7.4.5",
"@babel/plugin-syntax-jsx": "7.2.0",
"@babel/preset-env": "7.4.5",
"@babel/preset-react": "7.0.0",
"babel-check-duplicated-nodes": "^1.0.0",
"babel-eslint": "10.0.1",
"babel-jest": "24.8.0",
"coffeescript": "1.8.0",
"djedi-react": "./stub",
"doctoc": "1.4.0",
"eslint": "5.16.0",
"eslint-config-lydell": "14.0.0",
"eslint-plugin-import": "2.17.3",
"eslint-plugin-jest": "22.6.4",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-react": "7.13.0",
"eslint-plugin-react-hooks": "1.6.0",
"eslint-plugin-simple-import-sort": "3.1.1",
"isomorphic-unfetch": "3.0.0",
"jest": "24.8.0",
"less": "3.9.0",
"next": "8.1.0",
"onchange": "6.0.0",
"prettier": "1.18.2",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-test-renderer": "16.8.6"
}
}