-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.08 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.08 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "cms-json",
"version": "0.2.22",
"author": "Antoine Melki",
"license": "MIT",
"description": "A headless CMS loading and saving its data from/to a json file",
"repository": {
"type": "git",
"url": "https://github.com/amelki/cms-json.git"
},
"bugs": {
"email": "adonf156@gmail.com"
},
"engines": {
"node": ">= 8.0.0"
},
"bin": {
"cms-json": "./server.js"
},
"main": "index.js",
"keywords": [
"cms",
"json",
"headless",
"node"
],
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/test/.*\\.(ts|tsx)$"
},
"scripts": {
"test": "cross-env NODE_ENV=test jest --coverage",
"dev": "node server --env development",
"start": "node server --env production",
"start-playground": "node server --env playground",
"build": "node build && rimraf dist && cross-env NODE_ENV=production webpack --config ./webpack.production.config.js --progress --profile --colors",
"patch": "npm build && npm version patch && npm publish",
"lint": "tslint -c tslint.json 'app/**/*.{ts,tsx}'",
"eslint": "eslint .",
"compile": "tsc"
},
"dependencies": {
"@types/jszip": "^3.1.4",
"@types/react": "^16.4.16",
"@types/react-dom": "^16.0.9",
"body-parser": "^1.18.2",
"colors": "^1.1.2",
"commander": "^2.9.0",
"cors": "^2.8.4",
"express": "^4.16.1",
"history": "^4.7.2",
"json-pretty-html": "^1.1.5",
"jszip": "^3.1.4",
"markdown-it": "^8.4.0",
"react": "^16.5.2",
"react-dnd": "^5.0.0",
"react-dnd-html5-backend": "^5.0.1",
"react-dom": "^16.5.2",
"react-json-pretty": "^1.7.4",
"react-redux": "^5.0.6",
"react-router": "^4.1.2",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.6",
"react-split-pane": "^0.1.66",
"react-tag-input": "^4.7.2",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"to-markdown": "^3.0.3"
},
"devDependencies": {
"@types/jest": "^23.3.5",
"awesome-typescript-loader": "^3.5.0",
"axios": "^0.17.0",
"babel-eslint": "^8.0.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"cross-env": "^5.0.5",
"css-loader": "^0.28.5",
"eslint": "^4.8.0",
"eslint-plugin-react": "^7.4.0",
"extract-text-webpack-plugin": "^3.0.1",
"file-loader": "^1.1.5",
"fsevents": "^1.2.4",
"html-webpack-plugin": "^2.30.1",
"jest": "^21.2.1",
"jsdoc-to-markdown": "^4.0.1",
"json-loader": "^0.5.3",
"less": "^2.7.2",
"less-loader": "^4.0.5",
"node-sass": "^4.9.4",
"object-path": "^0.11.4",
"postcss-loader": "^2.0.6",
"react-redux-form": "^1.16.10",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.6",
"source-map-loader": "^0.2.4",
"style-loader": "^0.19.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"ts-jest": "^21.2.4",
"typescript": "^3.1.3",
"webpack": "^3.6.0",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.13.1"
}
}