-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.79 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
{
"name": "example-node-server",
"version": "1.0.0",
"description": "Example Node Server w/ Babel",
"main": "lib/index.js",
"scripts": {
"build": "babel scripts -d dist",
"start": "npm run build && node dist/index.js",
"fetchComments": "npm run build && node dist/commentFetch.js",
"serve": "npm run build && node dist/index.js",
"dev": "nodemon --ignore './dist/' -e js --exec \"npm run serve\"",
"testWatch": "npm run build && mocha --watch --require @babel/register",
"testPipeline": "npm run build && mocha --require @babel/register",
"myScript": "npm run build -e 'require(\"./someFile\").someFunction()'",
"rs": "react-scripts start",
"rb": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"author": "James Kyle <[email protected]>",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/register": "^7.4.0",
"mocha": "^5.2.0",
"nodemon": "^1.17.5"
},
"dependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"axios": "^0.19.2",
"expect.js": "^0.3.1",
"lodash.get": "^4.4.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "3.4.1",
"styled-components": "^5.1.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}