forked from ResponsibleTechWork/challenge-toolbox-prototype
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.27 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.27 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
{
"name": "challenge-toolbox-prototype",
"version": "1.0.0",
"description": "Test power-up app",
"repository": "https://github.com/ResponsibleTechWork/challenge-toolbox-prototype.git",
"author": "Daniel Hartley <danhartleybcn@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-object-rest-spread": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@parcel/babel-preset-env": "^2.0.1",
"@parcel/reporter-bundle-analyzer": "^2.2.0",
"@parcel/reporter-bundle-buddy": "^2.2.0",
"@parcel/reporter-cli": "^2.0.1",
"ajv": "^8.8.2",
"babel-jest": "^27.3.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jest": "^27.3.1",
"node-fetch": "^3.1.0",
"parcel": "^2.0.0",
"regenerator-runtime": "^0.13.9"
},
"scripts": {
"build": "rm -rf dist/* && rm -rf public/* && parcel build src/index.html --public-url ./ --dist-dir public && mv ./public/popups/*.html ./public && mv ./public/modals/*.html ./public && git add . && git commit -m $1",
"release": "git push && git subtree push --prefix public origin gh-pages",
"tests": "jest",
"start": "node ./src/server/server.js"
},
"dependencies": {
"save-dev": "^0.0.1-security"
},
"type": "module"
}