-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.49 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
{
"name": "TODO-LIST-JS",
"jest": {
"moduleNameMapper": {
"^.+\\.(css|less|scss|svg)$": "identity-obj-proxy"
}
},
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"nanoid": "^3.1.20"
},
"scripts": {
"test": "jest",
"watch": "jest --watch ./src/*.js",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kenderb/TODO-LIST-JS.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kenderb/TODO-LIST-JS/issues"
},
"homepage": "https://github.com/kenderb/TODO-LIST-JS#readme",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"css-loader": "^5.0.1",
"enzyme": "^3.11.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"file-loader": "^6.2.0",
"identity-obj-proxy": "^3.0.0",
"image-webpack-loader": "^7.0.1",
"jest": "^26.6.3",
"mini-css-extract-plugin": "^1.3.3",
"nanoid": "^3.1.20",
"node-sass": "^5.0.0",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"stylelint": "^13.3.3",
"stylelint-config-standard": "^20.0.0",
"stylelint-csstree-validator": "^1.9.0",
"stylelint-scss": "^3.17.2",
"terser-webpack-plugin": "^5.0.3",
"webpack": "^5.11.0",
"webpack-cli": "^4.3.0",
"webpack-dev-server": "^3.11.1"
}
}