forked from Sunny-117/js-challenges
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.11 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
{
"name": "js-challenges",
"version": "1.0.0",
"description": "",
"main": "index.js",
"files": [
"lib/**/*.js",
"dist/**/*.js",
"questions/**/*.js"
],
"scripts": {
"cli": "node ./lib/node/app.mjs",
"build": "rollup -c rollup.config.js",
"gen-manifest": "node ./lib/scripts/gen-manifest.mjs",
"test": "jest --detectOpenHandles"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"chai": "^4.3.6",
"commander": "^9.4.1",
"execa": "^6.1.0",
"markdown-it": "^13.0.1",
"mocha": "^10.1.0",
"prismjs": "^1.29.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-json": "^5.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/node": "^20.11.28",
"jest": "^29.7.0",
"postcss": "^8.4.18",
"rollup": "^3.2.5",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}