-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.79 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
{
"name": "chemistli",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "node ./dist/server/index.js",
"build": "cross-env BABEL_ENV=browser webpack --mode=production && cross-env BABEL_ENV=node babel ./src -d ./dist",
"dev-server": "nodemon --watch ./src --exec \"cross-env BABEL_ENV=node babel-node ./src/server/index.js\"",
"dev": "concurrently \"npm run dev-server\" \"cross-env BABEL_ENV=browser webpack --mode=development --watch\"",
"prepare": "husky install"
},
"author": "Johannes Kronmüller (https://johakr.me)",
"license": "SEE LICENSE IN LICENSE",
"repository": "github:johakr/chemistli",
"dependencies": {
"@babel/core": "^7.12.3",
"es6-promise": "^4.2.8",
"express": "^4.17.1",
"express-static-gzip": "^2.1.0",
"helmet": "^4.2.0",
"isomorphic-fetch": "^3.0.0",
"linkstate": "^2.0.1",
"milligram": "^1.4.1",
"preact": "^10.5.7",
"preact-render-to-string": "^5.1.11",
"preact-router": "^3.2.1"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/node": "^7.12.6",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-react-jsx": "^7.12.5",
"@babel/preset-env": "^7.12.1",
"babel-loader": "^8.2.1",
"compression-webpack-plugin": "^9.0.0",
"concurrently": "^6.4.0",
"cross-env": "^7.0.2",
"css-loader": "^6.5.1",
"glob-all": "^3.2.1",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.0",
"mini-css-extract-plugin": "^2.4.4",
"nodemon": "^2.0.6",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.0",
"purgecss-webpack-plugin": "^4.0.3",
"sass": "^1.29.0",
"sass-loader": "^12.3.0",
"script-ext-html-webpack-plugin": "^2.1.5",
"style-loader": "^3.3.1",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0"
}
}