-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "notes-list",
"version": "0.1.0",
"description": "A simple notes list",
"repository": "[email protected]:gorjan5sk/notes-list.git",
"author": "Gorjan Petrovski <[email protected]>",
"license": "UNLICENSED",
"private": true,
"scripts": {
"test": "jest",
"pack": "webpack --mode=production",
"build": "webpack --mode=development",
"watch": "webpack --mode=development --watch",
"dev": "yarn build && yarn watch & yarn serve",
"clean": "git clean -fdx build yarn-error.log",
"clean-all": "git clean -fdx build yarn-error.log node_modules",
"serve": "http-server -p 8080 -c-1 ./build",
"seed-data": "ts-node scripts/seed-notes.ts -n 50 -f ./assets/input-data.json",
"gh-pages:prepare": "yarn clean && yarn install && yarn pack",
"gh-pages:copy": "mkdir gh-pages && cpx './build/**/*' 'gh-pages'",
"gh-pages": "yarn gh-pages:prepare && yarn gh-pages:copy"
},
"devDependencies": {
"@types/enzyme": "^3.10.8",
"@types/jest": "^26.0.23",
"@types/node": "^15.0.2",
"@types/react": "^17.0.5",
"@types/react-dom": "^17.0.3",
"@types/uuid": "^8.3.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.1",
"copy-webpack-plugin": "^8.1.1",
"cpx": "^1.5.0",
"css-loader": "^5.2.4",
"enzyme": "^3.11.0",
"fast-check": "^2.14.0",
"html-webpack-plugin": "^5.3.1",
"http-server": "^0.12.3",
"jest": "^26.6.3",
"jest-css-modules": "^2.1.0",
"prettier": "2.2.1",
"style-loader": "^2.0.0",
"ts-jest": "^26.5.6",
"ts-loader": "^9.1.2",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typescript": "^4.2.4",
"webpack": "^5.36.2",
"webpack-cli": "^4.7.0",
"yargs": "^17.0.1"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "^0.1.14",
"mobx": "^6.3.0",
"mobx-react-lite": "^3.2.0",
"mobx-utils": "^6.0.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"uuid": "^8.3.2"
}
}