-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·57 lines (57 loc) · 1.84 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
{
"name": "shortlist-it",
"version": "1.1.0",
"scripts": {
"clean": "rimraf ./docs/*",
"build": "npm run clean && webpack -o ./docs/ -c ./webpack.prod.config.cjs",
"build:dev": "npm run clean && webpack -c ./webpack.config.cjs",
"start": "ASSET_PATH=http://localhost:4800/ webpack serve -c ./webpack.config.cjs --open",
"start:prod": "ASSET_PATH=http://localhost:4800/ webpack serve -c ./webpack.prod.config.cjs --open",
"start:live": "ASSET_PATH=http://localhost:4800/ webpack serve -c ./webpack.config.cjs --open --live-reload --hot",
"test:component": "npx cypress run --component"
},
"license": "MIT",
"author": {
"name": "Jason Holt Smith",
"email": "[email protected]"
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/plugin-transform-runtime": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@types/file-saver": "^2.0.5",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@types/uuid": "^8.3.4",
"autoprefixer": "^10.4.14",
"babel-loader": "^8.3.0",
"css-loader": "^6.8.1",
"cypress": "^12.16.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.3",
"json-loader": "^0.5.7",
"postcss": "^8.4.24",
"postcss-loader": "^4.3.0",
"rimraf": "^3.0.2",
"style-loader": "^3.3.3",
"typescript": "^4.9.5",
"webpack": "^5.88.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"bootstrap": "^5.3.0",
"bootstrap-icons": "^1.10.5",
"file-saver": "^2.0.5",
"react": "^18.2.0",
"react-bootstrap": "^2.8.0",
"react-bootstrap-icons": "^1.10.3",
"react-dom": "^18.2.0",
"react-markdown": "^8.0.7",
"react-router-dom": "^6.14.0",
"remark-gfm": "^3.0.1",
"uuid": "^9.0.0"
}
}