This repository was archived by the owner on Oct 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.36 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.36 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
{
"name": "nieve",
"version": "1.0.0",
"description": "New frontend for nibble kiosk system.",
"main": "index.js",
"author": "Fredrik August Madsen-Malmo <mail.fredrikaugust@gmail.com>",
"license": "GPL-v3.0",
"devDependencies": {
"@types/jest": "^23.3.9",
"@types/react": "^16.4.2",
"@types/react-dom": "^16.0.7",
"@types/react-redux": "^5.0.7",
"@types/redux-logger": "^3.0.6",
"@types/uuid": "^3.4.4",
"awesome-typescript-loader": "^5.2.0",
"css-loader": "^1.0.0",
"file-loader": "^2.0.0",
"jest": "^23.6.0",
"node-sass": "^4.9.3",
"sass-loader": "^7.1.0",
"source-map-loader": "^0.2.4",
"style-loader": "^0.23.0",
"ts-jest": "^23.10.4",
"tslint": "^5.11.0",
"typescript": "^3.0.1",
"webpack": "^4.18.0",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.11"
},
"scripts": {
"start": "webpack-dev-server --hot --inline --colors --port 3000 --open",
"build": "webpack --config webpack.config.js --watch",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@blueprintjs/core": "^3.5.1",
"@blueprintjs/icons": "^3.1.0",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"typesafe-actions": "^2.0.4",
"uuid": "^3.3.2"
}
}