-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 925 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
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "assignment-01-sample-soln",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"babel": "npx babel js/src/ --out-dir js/dist/",
"watch": "npx babel js/src/ --out-dir js/dist/ --watch",
"test": "npx mocha -r esm",
"build": "npm run babel"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/preset-react": "^7.6.3",
"babel-plugin-iife-wrap": "^1.1.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"esm": "^3.2.25",
"fetch-mock": "^7.5.1",
"mocha": "^6.2.2",
"node-fetch": "^2.6.0",
"react": "^16.11.0",
"react-dom": "^16.11.0"
},
"babel": {
"presets": [
"@babel/preset-react",
[
"@babel/preset-env",
{
"modules": false
}
]
]
}
}