-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.73 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
{
"name": "fiddleheads",
"version": "1.0.0",
"description": "Fiddlehead documentation website",
"scripts": {
"start": "node server.js",
"build": "webpack --config webpack/webpack.config.js",
"dist": "cross-env NODE_ENV=production npm run build",
"themify": "nodemon src/themify src/style --ext js",
"watch": "concurrently \"npm run themify\" \"webpack --config webpack/webpack.config.js --watch\"",
"dev": "concurrently \"nodemon server.js\" \"npm run watch\"",
"lint": "eslint ./src --config .eslintrc",
"test": "echo \"There are no tests available\""
},
"dependencies": {
"@babel/standalone": "^7.20.12",
"@codemirror/commands": "^6.2.0",
"@codemirror/lang-css": "^6.0.1",
"@codemirror/lang-javascript": "^6.1.2",
"@codemirror/state": "^6.2.0",
"@codemirror/view": "^6.7.3",
"@lezer/highlight": "^1.1.3",
"compression": "^1.7.4",
"express": "^4.18.2",
"fiddlehead": "^1.8.3",
"history": "^5.3.0",
"marked": "^4.2.1",
"mdn-polyfills": "^5.20.0",
"pretty-format": "^29.4.1",
"prismjs": "^1.29.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"autoprefixer": "^10.4.12",
"babel-loader": "^8.2.5",
"babel-preset-fiddlehead": "^1.0.3",
"concurrently": "^7.5.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"eslint": "^8.26.0",
"html-webpack-plugin": "^5.5.0",
"less": "^4.1.3",
"less-loader": "^11.1.0",
"mini-css-extract-plugin": "^2.7.2",
"nodemon": "^2.0.20",
"postcss": "^8.4.17",
"postcss-initial": "^3.0.4",
"postcss-loader": "^7.0.1",
"style-loader": "^3.3.1",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2"
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
]
}