-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.41 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.41 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
46
47
48
49
50
51
52
53
54
{
"name": "codism",
"version": "1.0.0",
"description": "An HTML, CSS and JavaScript playground",
"author": "Muhammad Hasnain",
"repository": {
"type": "git",
"url": "https://github.com/npm/cli.git"
},
"contributors": [],
"keywords": [
"codepen",
"tailwindcss",
"coding platform"
],
"license": "ISC",
"scripts": {
"start": "npm run watch",
"watch": "webpack serve --mode=development",
"build": "webpack --mode=production",
"serve": "http-server ./dist -o"
},
"devDependencies": {
"@babel/core": "^7.16.12",
"@babel/plugin-syntax-import-assertions": "^7.16.7",
"@babel/preset-env": "^7.16.11",
"autoprefixer": "^10.4.2",
"babel-loader": "^8.2.3",
"babel-polyfill": "^6.26.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^10.2.1",
"css-loader": "^6.5.1",
"file-loader": "^6.2.0",
"glob": "^7.2.0",
"html-webpack-plugin": "^5.5.0",
"http-server": "^14.1.0",
"mini-css-extract-plugin": "^2.5.2",
"postcss": "^8.4.5",
"postcss-loader": "^6.2.1",
"postcss-preset-env": "^7.2.3",
"style-loader": "^3.3.1",
"tailwindcss": "^3.0.15",
"webpack": "^5.67.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.3"
},
"dependencies": {
"codemirror": "^5.65.1",
"dom-event": "^1.0.0",
"local-storage": "^2.0.0",
"select-dom": "^7.1.1",
"uuid-browser": "^3.1.0"
}
}