-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.01 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "hello_assets",
"version": "0.1.0",
"description": "Internet Computer starter application",
"keywords": [
"Internet Computer",
"Motoko",
"JavaScript",
"Canister"
],
"scripts": {
"devStart": "nodemon server.jsx",
"build": "webpack",
"prebuild": "npm run copy:types",
"start": "webpack serve --mode development --env development",
"prestart": "npm run copy:types",
"copy:types": "rsync -avr .dfx/$(echo ${DFX_NETWORK:-'**'})/canisters/** --exclude='assets/' --exclude='idl/' --exclude='*.wasm' --delete src/declarations"
},
"devDependencies": {
"@dfinity/agent": "0.9.3",
"@dfinity/auth-client": "^0.10.1",
"@dfinity/authentication": "^0.10.1",
"@dfinity/candid": "0.9.3",
"@dfinity/identity": "^0.10.1",
"@dfinity/principal": "0.9.3",
"assert": "2.0.0",
"buffer": "6.0.3",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.4.0",
"events": "3.3.0",
"html-webpack-plugin": "5.3.1",
"mini-css-extract-plugin": "^2.4.3",
"node-sass": "^6.0.1",
"nodemon": "^2.0.15",
"process": "0.11.10",
"redux-devtools-extension": "^2.13.9",
"remotedev-server": "^0.3.1",
"sass": "^1.43.3",
"sass-loader": "^12.2.0",
"stream-browserify": "3.0.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "5.1.1",
"ts-loader": "^9.2.5",
"typescript": "^4.3.5",
"util": "0.12.3",
"webpack": "^5.24.4",
"webpack-cli": "4.9.0",
"webpack-dev-server": "^3.11.2"
},
"browserslist": [
"last 2 chrome version",
"last 2 firefox version",
"last 2 safari version",
"last 2 edge version"
],
"dependencies": {
"@types/react": "^17.0.34",
"@types/react-dom": "^17.0.11",
"axios": "^0.24.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2021": "^1.0.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.6",
"redux": "^4.1.2",
"redux-thunk": "^2.4.0"
}
}