-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.07 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": "palindrome",
"version": "1.0.0",
"description": "A palindrome is a word or phrase string that reads the same backwards as forwards, independent of spaces and punctuation",
"main": "index.js",
"private": true,
"scripts": {
"eslint:fix": "eslint --config .eslintrc.js \"src/**\" --quiet --fix",
"build": "webpack",
"start": "webpack-dev-server",
"test": "cross-env NODE_ENV=test jest --verbose \"src/*/.*\\.test\\.js\"",
"test:single": "cross-env NODE_ENV=test jest --verbose \"src/client/App\\.test\\.js\"",
"test:watch": "cross-env NODE_ENV=test jest --verbose --watchAll \"src/*/.*\\.test\\.js\""
},
"keywords": [
"palindrome"
],
"author": "David Makuni",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-optional-chaining": "^7.7.5",
"@babel/plugin-syntax-throw-expressions": "^7.7.4",
"@babel/plugin-transform-modules-commonjs": "^7.7.5",
"@babel/plugin-transform-regenerator": "^7.7.5",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.4.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-plugin-import": "^1.13.0",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^6.0.3",
"css-loader": "^3.4.0",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.9.0",
"jest-fetch-mock": "^3.0.1",
"jest-transform-stub": "^2.0.0",
"path": "^0.12.7",
"request": "^2.88.0",
"run-node-webpack-plugin": "^1.2.2",
"style-loader": "^1.1.2",
"validator": "^12.1.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"antd": "^3.26.5",
"express": "^4.17.1",
"lodash": "^4.17.15",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0"
}
}