-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1.01 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
{
"name": "mycyberpunk",
"version": "1.0.0",
"description": "Website written on Sinclair BASIC",
"main": "src/index.js",
"scripts": {
"start": "webpack-dev-server --mode development --open",
"build": "webpack --mode production",
"make-tape": "tools/maketape.sh",
"copy": "node node_modules/ncp/bin/ncp",
"docker:build": "npm run copy -- dist docker/build && docker build -t mycyberpunk docker"
},
"author": "Vadim Cherenev <[email protected]>",
"license": "UNLICENSE",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"copy-webpack-plugin": "^5.0.5",
"css-loader": "^1.0.0",
"file-loader": "^4.2.0",
"html-webpack-plugin": "^3.2.0",
"jsbin2tap": "0.0.2",
"ncp": "^2.0.0",
"style-loader": "^0.23.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.9.0"
},
"dependencies": {
"font-awesome": "^4.7.0",
"jquery": "^3.5.0",
"simple-keyboard": "^2.27.10"
}
}