-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.27 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.27 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
36
37
38
39
40
41
42
43
44
45
{
"name": "self-coding-intro",
"version": "1.0.0",
"description": "An interactive self-typing code introduction page",
"main": "app.js",
"scripts": {
"build": "webpack --mode=production",
"dev": "webpack serve",
"watch": "webpack --progress --watch",
"clean": "rm -rf dist"
},
"homepage": "https://bit-cook.github.io/self-coding-intro",
"keywords": [
"interactive",
"animation",
"introduction",
"css",
"javascript"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-transform-class-properties": "^7.28.6",
"@babel/plugin-transform-json-strings": "^7.28.6",
"@babel/plugin-transform-runtime": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@babel/preset-flow": "^7.27.1",
"babel-loader": "^10.0.0",
"exports-loader": "^5.0.0",
"webpack": "^5.104.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.3"
},
"dependencies": {
"@babel/runtime": "^7.28.6",
"bluebird": "^3.7.2",
"classlist-polyfill": "^1.2.0",
"marked": "^15.0.0",
"mouse-wheel": "^1.2.0",
"util": "^0.12.5"
}
}