-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.52 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
{
"name": "properties",
"version": "1.0.0",
"description": "Code challage: Displaying and filtering a list of properties",
"main": "index.js",
"repository": "https://github.com/iankhor/properties",
"author": "iankhor <iankhorbc.thecoder@gmail.com>",
"license": "MIT",
"private": true,
"config": {
"jest": "jest --config=jest.config.js"
},
"scripts": {
"build": "webpack --mode production",
"start": "./node_modules/webpack/bin/webpack.js -p --progress && node ./dist/server.js",
"dev": "webpack-dev-server --mode development",
"test:dev": "${npm_package_config_jest} --watch --coverage --verbose",
"test:ci": "${npm_package_config_jest} --ci --coverage"
},
"dependencies": {
"@fvilers/disable-react-devtools": "^1.1.0",
"@types/node": "^13.13.4",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"awesome-typescript-loader": "^5.2.1",
"axios": "^0.19.2",
"css-loader": "^3.4.2",
"css-modules-typescript-loader": "^4.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"html-webpack-plugin": "^3.2.0",
"numeraljs": "^1.5.6",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"style-loader": "^1.2.1",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.1.1",
"@testing-library/react": "^10.0.4",
"@types/jest": "^25.2.1",
"jest": "^25.5.3",
"react-axe": "^3.4.1",
"ts-jest": "^25.4.0",
"typescript": "^3.8.3",
"webpack-dev-server": "^3.10.3"
}
}