-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.93 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
{
"name": "expensify",
"version": "1.0.0",
"description": "This is first React Project",
"main": "index.js",
"scripts": {
"start": "npm run compile | nodemon index.js",
"compile": "babel src/app.js --out-file=scripts/app.js --presets=env,react --watch",
"compile-2": "babel src/utils.js --out-file=scripts/utils.js --presets=env,react --watch",
"compile-3": "babel src/feedPost.js --out-file=scripts/feedPost.js --presets=env,react --watch",
"build": "webpack --watch",
"dev-server": "webpack-dev-server",
"test": "jest --config=jest.config.json"
},
"author": "Shakti Santosh Nayak",
"license": "ISC",
"dependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.18.6",
"@babel/preset-env": "^7.18.9",
"@babel/preset-react": "^7.18.6",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-loader": "^8.2.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.5.2",
"babel-preset-react": "^6.24.1",
"css-loader": "^6.7.1",
"enzyme": "^3.0.0",
"enzyme-adapter-react-16": "^1.0.0",
"enzyme-to-json": "^3.6.2",
"ganache-cli": "^6.12.2",
"jest": "^29.0.3",
"mocha": "^10.0.0",
"moment": "^2.29.4",
"node-sass": "^8.0.0",
"nodemon": "^2.0.20",
"normalize.css": "^8.0.1",
"raf": "^3.3.2",
"react": "^16.0.0",
"react-addons-shallow-compare": "^15.6.0",
"react-dates": "^12.7.0",
"react-dom": "^16.0.0",
"react-modal": "^3.15.1",
"react-redux": "^8.0.2",
"react-router-dom": "^4.2.2",
"react-test-renderer": "16.0.0",
"redux": "^4.2.0",
"sass-loader": "^13.0.2",
"solc": "^0.4.17",
"style-loader": "^3.3.1",
"uuid": "^8.3.2",
"validator": "^13.7.0",
"web3": "^1.7.4",
"webpack": "^5.73.0",
"webpack-dev-server": "^4.9.3"
},
"devDependencies": {
"@babel/plugin-proposal-object-rest-spread": "^7.18.9",
"webpack-cli": "^4.10.0"
}
}