-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 842 Bytes
/
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
{
"name": "basic",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/runtime": "^7.14.6",
"@reduxjs/toolkit": "^1.6.0",
"axios": "^0.21.1",
"date-fns": "^2.22.1",
"faker": "^5.5.3",
"miragejs": "^0.1.41",
"node-localstorage": "^2.2.1",
"redux": "^4.1.0",
"rimraf": "^3.0.2",
"seedrandom": "^3.0.5",
"txtgen": "^2.2.8"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf dist/ && babel ./src --out-dir dist/ --ignore ./node_modules,./.babelrc,./package.json,./npm-debug.log --copy-files",
"start": "npm run build && node dist/standalone/blog/index.js"
}
}