-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.68 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.68 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
55
56
{
"name": "automacoin-client",
"version": "0.1.0",
"private": "true",
"scripts": {
"serve:assets": "APP_ENV=development webpack --config webpack.dev.js --watch",
"serve:eleventy": "APP_ENV=development eleventy --serve ",
"serve": "run-p serve:*",
"build:assets": "webpack --config webpack.prod.js",
"build:eleventy": "eleventy",
"build": "run-s clean build:*",
"clean": "rimraf ./dist",
"lint": "npx eslint src/",
"test": "jest --coverage"
},
"repository": "https://github.com/automacoin/frontend.git",
"author": "Alessio Proietti <alessio.proietti@protonmail.com>",
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "^0.11.0",
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"babel-loader": "^8.1.0",
"bulma": "^0.9.0",
"bulma-switch": "^2.0.0",
"css-loader": "^4.2.2",
"eslint": "^7.7.0",
"favicons-webpack-plugin": "^4.2.0",
"html-webpack-plugin": "^4.4.1",
"mini-css-extract-plugin": "^0.11.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.1",
"sass": "^1.26.10",
"sass-loader": "^10.0.1",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-manifest-plugin": "^2.2.0",
"webpack-merge": "^5.1.3",
"workerize-loader": "^1.3.0"
},
"dependencies": {
"@ryangjchandler/spruce": "^1.1.1",
"alpinejs": "^2.6.0",
"animate.css": "^4.1.1",
"babel-jest": "^26.3.0",
"bulma-pageloader": "^0.3.0",
"bulma-toast": "^2.0.3",
"compute-kernel": "https://github.com/automacoin/compute-kernel.git",
"jest": "^26.4.2",
"pubsub-js": "^1.9.0",
"rimraf": "^3.0.2",
"spin.js": "^4.1.0",
"three": "^0.120.1",
"xterm": "^4.8.1"
}
}