-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
63 lines (63 loc) · 2.03 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
{
"name": "civil-publisher-wordpress-plugin",
"description": "Civil Publisher WordPress Plugin",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "webpack --config ./webpack.config.js --env.watch",
"dev:reload": "webpack --config ./webpack.config.js --env.watch --env.reload",
"dev:vm": "webpack --config ./webpack.config.js --env.watch --env.vm --info-verbosity verbose",
"build": "webpack --config ./webpack.config.js --env.production",
"phpcs": "phpcs -p -s ./ --standard=phpcs.xml --extensions=php",
"phpcbf": "phpcbf -p -s ./ --standard=phpcs.xml --extensions=php",
"lint": "tslint --project ./",
"prettier": "prettier --config ./.prettierrc.yaml --write --list-different './**/*.{ts,tsx,json,md}'"
},
"engines": {
"node": "9",
"npm": "5"
},
"dependencies": {
"@joincivil/components": "^1.7.5",
"@joincivil/core": "^4.7.5",
"@joincivil/newsroom-manager": "^1.7.5",
"@joincivil/utils": "^1.8.3",
"@types/lodash": "^4.14.116",
"@types/react-redux": "^6.0.2",
"bs58": "^4.0.1",
"ethereumjs-util": "^5.2.0",
"immutable": "^3.8.2",
"ipfs-api": "^24.0.1",
"jquery": "^3.3.1",
"lodash": "^4.17.11",
"moment": "^2.22.2",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"styled-components": "^3.3.3"
},
"devDependencies": {
"@joincivil/tslint-rules": "^2.7.1",
"@joincivil/typescript-types": "^1.3.1",
"@types/react": "^16.3.15",
"@types/react-dom": "^16.0.5",
"awesome-typescript-loader": "^5.0.0",
"file-loader": "^1.1.11",
"prettier": "1.14.3",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"source-map-loader": "^0.2.3",
"tslint": "^5.10.0",
"types-ethereumjs-util": "^0.0.8",
"typescript": "^2.9.1",
"web3-typescript-typings": "^0.10.2",
"webpack": "^4.6.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.3",
"webpack-livereload-plugin": "^2.1.1",
"webpack-stats-plugin": "0.1.3"
},
"browserslist": [
"last 3 versions"
]
}