-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 957 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 957 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
31
32
33
34
{
"name": "atomic",
"version": "1.0.0",
"scripts": {
"bundle": "rollup --config",
"develop": "rollup --config --watch",
"serve": "serve .",
"test": "serve tests"
},
"type": "module",
"engines": {
"node": ">= 17.4.0",
"npm": ">= 8.0.0"
},
"devDependencies": {
"@babel/cli": "^7.17.5",
"@babel/core": "^7.17.6",
"@babel/plugin-proposal-partial-application": "^7.16.7",
"@babel/plugin-transform-regenerator": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.16.10",
"@babel/preset-env": "^7.16.11",
"@babel/preset-modules": "^0.1.5",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "^5.0.7",
"core-js": "^3.21.1",
"rollup": "^2.70.0",
"rollup-plugin-import-map": "^2.2.2",
"rollup-plugin-jscc": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"serve": "^14.2.4"
}
}