-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
71 lines (71 loc) · 2.2 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
{
"name": "crisp",
"private": true,
"version": "1.1.0",
"description": "Test Automation Code Generator",
"scripts": {
"start": "npm-run-all lint webpack-watch",
"build": "npm-run-all lint webpack",
"build:generate": "npm-run-all webpack-generate",
"start:prod": "npm-run-all lint webpack:prod",
"webpack": "webpack --config ./webpack.config.js",
"webpack-watch": "webpack --config ./webpack.config.js -w",
"webpack:prod": "webpack --config ./webpack.config.js -p",
"webpack-generate": "webpack --config ./webpack-generate.config.js",
"stylelint": "stylelint app/styles/**/*.less",
"eslint": "eslint app/scripts/**/*.ts",
"lint": "npm-run-all -c eslint stylelint",
"test": "jest --watch --verbose=true"
},
"devDependencies": {
"@types/chrome": "^0.x.x",
"@types/jest": "^25.1.3",
"@types/lodash": "^4.14.168",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^3.0.0",
"@typescript-eslint/parser": "^3.0.0",
"babel-cli": "6.x.x",
"babel-core": "6.x.x",
"babel-loader": "8.x.x",
"babel-preset-env": "1.x.x",
"chai": "4.x.x",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.3.2",
"css-loader": "^5.0.1",
"debounce": "1.x.x",
"del": "5.x.x",
"eslint": "^7.1.0",
"extension-build-webpack-plugin": "^1.1.7",
"file-loader": "^6.2.0",
"jest": "^25.1.0",
"less": "^3.12.2",
"less-loader": "^7.1.0",
"lodash": "^4.17.20",
"mini-css-extract-plugin": "^1.3.1",
"npm-run-all": "^4.1.5",
"path": "^0.12.7",
"redux-devtools": "^3.7.0",
"require-dir": "1.x.x",
"stylelint": "^12.0.1",
"stylelint-config-standard": "^19.0.0",
"terser-webpack-plugin": "^5.0.3",
"ts-jest": "^25.2.1",
"ts-loader": "^6.2.1",
"typescript": "^3.8.2",
"webpack": "^5.0.0",
"webpack-cli": "^4.2.0"
},
"dependencies": {
"@reduxjs/toolkit": "^1.5.0",
"@types/jquery": "^3.5.0",
"@types/react-redux": "^7.1.13",
"bson-objectid": "^1.3.1",
"chrome-promise": "^3.0.5",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-redux": "^7.2.2",
"react-toastify": "^7.0.3",
"redux": "^4.0.5"
}
}