-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.18 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
{
"name": "socelect",
"version": "1.0.1",
"description": "JavaScript package for socelect",
"browserslist": "> 0.2% or last 1 version and not dead",
"repository": "git@github.com:wbreeze/socelect.git",
"author": "Douglas Lovell <doug@wbreeze.com>",
"source": "src/index.js",
"main": "dist/main.js",
"license": "GPL-3.0",
"scripts": {
"init" : "[ -d dist ] || mkdir dist; [ -d app/assets/javascripts/parceled ] || mkdir app/assets/javascripts/parceled",
"clean": "npm run init && rm -rf dist/ app/assets/javascripts/parceled/",
"build": "npm run clean && NODE_ENV='production' parcel build src/index.js --no-source-maps --no-content-hash && cp dist/main.js app/assets/javascripts/parceled/",
"serve": "parcel serve src/index.html",
"watch": "npm run clean && parcel watch src/index.js"
},
"dependencies": {
"core-js": "^3",
"poui": "^1.0.4",
"prop-types": "^15.7.2",
"@swc/helpers": "^0.4.14",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-simple-timefield": "^2.0.3"
},
"devDependencies": {
"parcel": "^2.8.1",
"process": "^0.11.10"
},
"resolutions": {
"node-forge": "^0.10.0",
"is-svg": "~> 4.2.2"
}
}