-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.04 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.04 KB
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
{
"name": "caesar-cli",
"version": "0.0.1",
"description": "Caesar cipher CLI app",
"license": "MIT",
"engines": {
"node": "16.x"
},
"scripts": {
"build": "cross-env NODE_ENV=\"development\" TS_NODE_PROJECT=\"tsconfig.json\" webpack --watch",
"test": "jest",
"test:watchAll": "jest --watchAll",
"test:coverage": "jest --coverage"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^16.0.0",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"concurrently": "^6.2.0",
"cross-env": "^7.0.3",
"eslint": "^7.30.0",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-node": "^11.1.0",
"jest": "^27.0.6",
"nodemon": "^2.0.7",
"ts-jest": "^27.0.3",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"typescript": "^4.3.5",
"webpack": "^5.42.1",
"webpack-cli": "^4.7.2"
}
}