-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 896 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 896 Bytes
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
{
"name": "cupid-sdk-js",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "parcel src/index.html --port 3000",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "parcel build index.html --out-dir dist",
"build:no-cache": "parcel build src/index.html --no-cache --out-dir dist",
"build:no-minify": "parcel build src/index.html --no-minify --out-dir dist"
},
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^0.18.0",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-transform-async-to-generator": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.6",
"parcel-bundler": "^1.12.3",
"sass": "^1.20.1"
}
}