-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.8 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
{
"name": "shopping-cart",
"version": "2.1.1",
"description": "Interactive, customisable shopping cart with discounts computation functionality",
"main": "src/index.js",
"author": "Pablo Deeleman <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"dev": "parcel src/index.html -p 9000",
"build": "rimraf ./dist && parcel build src/index.html --no-cache",
"build:ci": "yarn lint && yarn test && yarn build",
"test": "jest --silent",
"test:ci": "jest --silent --coverage && cat ./coverage/lcov.info | coveralls",
"lint": "eslint --ext .ts --ext .tsx src"
},
"dependencies": {
"@reduxjs/toolkit": "1.4.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-redux": "7.2.1",
"whatwg-fetch": "3.2.0"
},
"devDependencies": {
"@babel/core": "7.10.4",
"@babel/preset-env": "7.10.4",
"@babel/preset-react": "7.10.4",
"@babel/preset-typescript": "7.10.4",
"@testing-library/jest-dom": "5.11.1",
"@testing-library/react": "10.4.7",
"@types/jest": "26.0.4",
"@types/node": "14.0.23",
"@types/react": "16.9.43",
"@types/react-dom": "16.9.8",
"@types/react-redux": "7.1.9",
"@typescript-eslint/eslint-plugin": "3.6.1",
"@typescript-eslint/parser": "3.6.1",
"babel-jest": "26.1.0",
"babel-polyfill": "6.26.0",
"coveralls": "3.1.0",
"eslint": "7.4.0",
"eslint-plugin-html": "6.0.2",
"eslint-plugin-react": "7.20.5",
"identity-obj-proxy": "3.0.0",
"jest": "26.1.0",
"parcel-bundler": "1.12.4",
"parcel-plugin-static-files-copy": "2.4.3",
"redux-devtools": "3.6.1",
"rimraf": "3.0.2",
"sass": "1.26.10",
"typescript": "3.9.6"
},
"staticFiles": {
"staticPath": "public",
"watcherGlob": "**",
"excludeGlob": [
"docs",
"docs/**"
]
}
}