-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
96 lines (96 loc) · 2.95 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
{
"name": "dones",
"version": "1.1.3",
"private": true,
"description": "WordPress theme for simple team task management and tracking",
"author": {
"name": "Andrew Duthie",
"email": "andrew@andrewduthie.com",
"url": "http://andrewduthie.com"
},
"repository": {
"type": "git",
"url": "https://github.com/aduth/dones.git"
},
"license": "GPL-2.0+",
"scripts": {
"clean": "npm-run-all --parallel clean:*",
"clean:dist": "rimraf dist && mkdir -p dist",
"clean:languages": "rimraf languages/*.mo",
"prebuild": "npm run clean:dist",
"build:es6": "cross-env NODE_ENV=production webpack --mode production",
"build:legacy": "cross-env BUILD_TARGET=legacy BABEL_ENV=legacy NODE_ENV=production webpack --mode production",
"build": "npm-run-all --parallel build:*",
"build-theme": "./bin/build-theme.sh",
"predev": "npm run clean:dist",
"dev": "webpack --watch",
"download-languages": "node bin/download-languages",
"test:lint": "eslint .",
"test:unit": "NODE_PATH=src wp-scripts test-unit-js",
"pretest:e2e": "npm run build && cp -r dist e2e/www",
"test:e2e": "cypress run --browser chrome",
"pretest": "npm run clean:dist",
"test": "npm-run-all --parallel test:*",
"format": "wp-scripts format-js src"
},
"browserslist": [
"last 2 versions",
"ie 11"
],
"devDependencies": {
"@babel/core": "7.9.0",
"@babel/plugin-transform-react-jsx": "7.9.1",
"@babel/plugin-transform-runtime": "7.9.0",
"@babel/preset-env": "7.9.0",
"@babel/runtime-corejs2": "7.9.2",
"@wordpress/babel-plugin-import-jsx-pragma": "2.5.0",
"@wordpress/eslint-plugin": "4.0.0",
"@wordpress/jest-preset-default": "5.4.0",
"@wordpress/scripts": "7.1.3",
"autoprefixer": "9.7.4",
"babel-eslint": "10.1.0",
"babel-loader": "8.1.0",
"babel-plugin-minify-export-mirror": "1.0.0",
"babel-plugin-webpack-alias": "2.1.2",
"cross-env": "7.0.2",
"css-loader": "3.4.2",
"cypress": "4.2.0",
"deep-freeze": "0.0.1",
"eslint": "6.8.0",
"eslint-plugin-jsdoc": "22.1.0",
"eslint-plugin-react": "7.19.0",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"node-sass": "4.13.1",
"npm-run-all": "4.1.5",
"postcss-critical-css": "3.0.6",
"postcss-loader": "3.0.0",
"prettier": "npm:wp-prettier@1.19.1",
"request-promise": "4.2.5",
"rimraf": "3.0.2",
"sass-loader": "8.0.2",
"style-loader": "1.1.3",
"webpack": "4.42.0"
},
"dependencies": {
"classcat": "4.0.2",
"fast-stable-stringify": "1.0.0",
"flatpickr": "4.6.3",
"lodash-es": "4.17.15",
"memize": "1.1.0",
"phpdate": "1.0.0",
"preact": "10.3.4",
"prsh": "1.0.1",
"redux": "4.0.5",
"redux-multi": "0.1.12",
"refx": "3.1.1",
"rememo": "3.0.0",
"textarea-caret": "3.1.0",
"wping": "1.0.0"
},
"jest": {
"preset": "@wordpress/jest-preset-default",
"setupFilesAfterEnv": [
"<rootDir>/jest.setup.js"
]
}
}