-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
116 lines (116 loc) · 3.66 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
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
114
115
116
{
"name": "@dadi/publish",
"version": "3.0.3",
"description": "DADI Publish",
"main": "index.js",
"scripts": {
"build": "NODE_ENV=production webpack",
"format": "prettier --write \"./**/*.{js,jsx,md,html}\"",
"prepublishOnly": "npm run build",
"test": "npm run test:lint && npm run build && npm run test:functional",
"test:functional:pre": "rm -rf test/functional/output && mkdir -p test/api/test/api/workspace && cp -R test/api/workspace/hooks test/api/test/api/workspace && cp test/api/workspace/db.template test/api/workspace/db",
"test:functional:run": "API_CLIENT_ID=testClient API_CLIENT_SECRET=testSecret API_HOST=localhost API_PORT=3004 NODE_ENV=test ./node_modules/codeceptjs/bin/codecept.js run --steps --config=./test/codecept.conf.js",
"test:functional": "npm run test:functional:pre && npm run test:functional:run",
"test:lint": "eslint --ext js,jsx . && prettier --check \"./**/*.{js,jsx,json,md,html,css}\"",
"watch": "NODE_ENV=development npm-run-all --parallel watch:server watch:app",
"watch:app": "webpack --watch --mode=development",
"watch:server": "nodemon \"./start.js\" --watch \"./server\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/preset-env": "^7.5.4",
"@babel/preset-react": "^7.0.0",
"@dadi/api": "beta",
"@dadi/api-filestore": "^0.11.4",
"@dadi/api-testbed": "^2.0.0",
"@dadi/api-validator": "^1.2.0",
"@dadi/api-wrapper": "^4.0.0-rc2",
"@dadi/api-wrapper-core": "^4.0.0-rc2",
"@dadi/eslint-config": "^1.1.0",
"@dadi/prettier-config": "^1.1.0",
"@edithq/slate-md-serializer": "^1.2.3",
"autoprefixer": "^9.6.1",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"chai": "^4.2.0",
"codeceptjs": "^2.2.0",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-plugin-codeceptjs": "^0.5.0",
"eslint-plugin-react": "^7.13.0",
"fecha": "^3.0.3",
"file-size": "^1.0.0",
"form-data": "^2.5.0",
"husky": "^2.4.1",
"immutable": "^4.0.0-rc.12",
"is-hotkey": "^0.1.4",
"js-cookie": "^2.2.0",
"js-promise-queue": "^1.1.0",
"lint-staged": "^8.2.1",
"mini-css-extract-plugin": "^0.6.0",
"moment": "^2.24.0",
"nodemon": "^1.19.1",
"npm-run-all": "^4.1.5",
"postcss-loader": "^3.0.0",
"pre-build-webpack": "^0.1.0",
"prettier": "^1.18.2",
"prop-types": "^15.7.2",
"puppeteer": "^1.18.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-modal": "^3.9.1",
"react-redux": "^7.1.0",
"react-router-dom": "^5.0.1",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"slate": "^0.47.8",
"slate-plain-serializer": "^0.7.6",
"slate-react": "^0.22.9",
"slugify": "^1.3.4",
"unfetch": "^4.1.0",
"url-loader": "^1.1.2",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2"
},
"babel": {
"plugins": [
"@babel/plugin-proposal-class-properties"
],
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"dependencies": {
"@dadi/boot": "^1.1.4",
"@dadi/logger": "^1.4.1",
"@material-ui/core": "^4.4.2",
"@material-ui/icons": "^4.4.1",
"colors": "^1.3.3",
"convict": "^4.4.1",
"mdi-material-ui": "^6.7.0",
"request-promise": "^4.2.4",
"restify": "^8.3.3",
"restify-cookies": "^0.2.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,json,md,html,css}": [
"prettier --write",
"git add"
]
}
}