Skip to content

Commit 9c61a3c

Browse files
committedDec 13, 2018
added a package.json in the root directory
1 parent e3b59d1 commit 9c61a3c

File tree

3 files changed

+30
-23
lines changed

3 files changed

+30
-23
lines changed
 

‎README.md

-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ code .
4242

4343
1. Build the react.js front-end.
4444
```bash
45-
cd static
4645
npm install
4746
npm run build
4847
```

‎package.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "static",
3+
"version": "0.1.0",
4+
"private": true,
5+
"scripts": {
6+
"install": "cd static && npm install",
7+
"start": "cd static && npm run start",
8+
"build": "cd static && npm run build",
9+
"test": "cd static && npm run test",
10+
"eject": "cd static && npm run eject"
11+
},
12+
"eslintConfig": {
13+
"extends": "react-app"
14+
},
15+
"browserslist": [
16+
">0.2%",
17+
"not dead",
18+
"not ie <= 11",
19+
"not op_mini all"
20+
]
21+
}
22+

‎static/package-lock.json

+8-22
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.